cclang/doc/test.bl
2020-05-23 13:40:51 +02:00

32 lines
639 B
Plaintext

// 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;
}
}
}