Files
kraken/tests/to_parse.krak
2016-01-11 23:41:09 -05:00

19 lines
299 B
Plaintext

import to_import: simple_print, a, b
obj Something (ObjectTrait) {
var member: int
fun method():int {
return 5
}
}
fun some_function(): int return 0;
fun some_other_function(in: bool): float {
return 0.0
}
fun main(): int {
simple_print("Hello World!")
return 0
}