13 lines
211 B
Text
13 lines
211 B
Text
|
|
class MAIN
|
||
|
|
creation main
|
||
|
|
feature main is
|
||
|
|
local
|
||
|
|
test: TEST;
|
||
|
|
do
|
||
|
|
create test;
|
||
|
|
|
||
|
|
io.read_integer;
|
||
|
|
test.assert(io.last_integer);
|
||
|
|
end
|
||
|
|
end
|