expression function calls

This commit is contained in:
nub31
2026-02-09 22:30:25 +01:00
parent 88fe03c048
commit d3e2dcede8
5 changed files with 63 additions and 21 deletions

View File

@@ -5,5 +5,6 @@ struct person {
name: string
}
func do_something(name: string): void {
func do_something(name: string): i32 {
return 3
}