2016-01-11 23:41:09 -05:00
|
|
|
import to_import: simple_print, a, b
|
2015-12-26 01:52:29 +00:00
|
|
|
|
2016-01-20 13:50:40 -05:00
|
|
|
obj Something (ObjectTrait) {
|
|
|
|
|
var member: int
|
|
|
|
|
fun method():int {
|
|
|
|
|
return 5
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-05 21:40:00 -05:00
|
|
|
|
2016-01-19 03:16:16 -05:00
|
|
|
/*fun some_function(): int return 0;*/
|
|
|
|
|
/*fun some_other_function(in: bool): float {*/
|
|
|
|
|
/*return 0.0*/
|
|
|
|
|
/*}*/
|
2016-01-10 18:26:31 -05:00
|
|
|
fun main(): int {
|
2016-01-19 03:16:16 -05:00
|
|
|
/*var a_declaration:int*/
|
|
|
|
|
/*simple_print(1 + 2)*/
|
|
|
|
|
/*var again = 2 + 4 - 1 * 400*/
|
|
|
|
|
/*simple_print(again)*/
|
|
|
|
|
/*again = 2 + (4 - 1) * 400*/
|
|
|
|
|
/*simple_print(again)*/
|
|
|
|
|
/*var another_declaration: int = 8.0*/
|
|
|
|
|
/*simple_print(another_declaration)*/
|
|
|
|
|
/*var yet_another_declaration = "Hello Marcus\n"*/
|
|
|
|
|
/*simple_print(yet_another_declaration)*/
|
|
|
|
|
/*simple_print("Hello World!\n")*/
|
|
|
|
|
/*simple_print(1337)*/
|
|
|
|
|
/*if (1 + 2 && false) simple_print("its true!")*/
|
|
|
|
|
/*else simple_print("its false!")*/
|
2016-01-20 13:50:40 -05:00
|
|
|
/*var counter = 10*/
|
|
|
|
|
/*counter--*/
|
|
|
|
|
/*--counter*/
|
|
|
|
|
/*while (counter) simple_print(counter--)*/
|
|
|
|
|
/*simple_print("\n")*/
|
|
|
|
|
/*counter = 8*/
|
|
|
|
|
/*while (counter) {*/
|
|
|
|
|
/*simple_print(--counter)*/
|
|
|
|
|
/*}*/
|
|
|
|
|
/*simple_print("\n")*/
|
|
|
|
|
/*for (var j = 0; j < 10; j++;)*/
|
|
|
|
|
/*simple_print(j)*/
|
|
|
|
|
var an_obj: Something
|
2016-01-21 12:54:21 -05:00
|
|
|
/*an_obj.member = 20*/
|
|
|
|
|
/*simple_print(an_obj.member)*/
|
2016-01-10 18:26:31 -05:00
|
|
|
return 0
|
|
|
|
|
}
|
2015-12-26 01:52:29 +00:00
|
|
|
|