// hi1 # hi2 /* hi3 */ lib Main { class Program { func Main() { testBool: bool; testEmpty: emptyType = empty; output('Hello World'); output(66); output(3 + 3); test: string = input('# '); output(test); output(false); /*if (testBool != empty) { output(testEmpty); }*/ test1234(range(0, 10)); } public func test1234(param: list) { /*for i in range(0, length(param)) { output(i); }*/ pass; } } }