Files
hakorune/tools/hako_check/tests/HC014_missing_entrypoint/ok.hako

15 lines
189 B
Plaintext
Raw Normal View History

// ok.hako — has Main.main entrypoint
static box Helper {
method calculate(x) {
return x * 2
}
}
static box Main {
method main() {
Helper.calculate(42)
return 0
}
}