Delegates

This commit is contained in:
nub31
2025-01-26 15:52:30 +01:00
parent 5103593ab4
commit 3f1a8bbf32
17 changed files with 328 additions and 41 deletions

View File

@@ -7,6 +7,6 @@ func main() {
write("test");
}
func write(msg: void) {
func write(msg: Func) {
syscall(SYS_WRITE, STD_OUT, msg);
}