phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0
This commit is contained in:
21
tests/development/test_debug_statics.hako
Normal file
21
tests/development/test_debug_statics.hako
Normal file
@ -0,0 +1,21 @@
|
||||
// Debug test for statics namespace
|
||||
|
||||
static box TestHelper {
|
||||
greet() {
|
||||
return "Hello from TestHelper"
|
||||
}
|
||||
}
|
||||
|
||||
static box Main {
|
||||
init { console }
|
||||
|
||||
main() {
|
||||
me.console = new ConsoleBox()
|
||||
me.console.log("Starting statics debug test")
|
||||
|
||||
// This will fail but show us the debug output
|
||||
local test = TestHelper
|
||||
|
||||
return "Complete"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user