Implement nova64 API with native yield function and registration

This commit is contained in:
Lukas Höppner
2026-08-10 12:43:13 +02:00
parent 1cfcd5a169
commit 27c3aaf88f
7 changed files with 79 additions and 4 deletions
+3 -1
View File
@@ -2,7 +2,9 @@ package main
// Declare a main function, this is the entrypoint into our go module
// That will be run. In our example, we won't need this
func main() {}
func main() {
_ = add(1, 2)
}
// This exports an add function.
// It takes in two 32-bit integer values