This commit is contained in:
2026-02-08 00:53:55 +01:00
parent f2ea00b34d
commit 26d365cf4f
4 changed files with 110 additions and 44 deletions

View File

@@ -1,11 +1,12 @@
using Compiler;
const string contents = """
func main(): void {
func main(): i32 {
do_something("test")
return 69
}
func do_something(text: string): void {
func do_something(text: string): func(i32 u32): void {
}
""";