Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
Hello world, to standard error, in Neko
|
||||
Tectonics:
|
||||
nekoc hello-stderr.neko
|
||||
neko hello-stderr
|
||||
*/
|
||||
|
||||
/* Assume stderr is already open, just need write */
|
||||
var file_write = $loader.loadprim("std@file_write", 4);
|
||||
|
||||
/* Load (and execute) the file_stderr primitive */
|
||||
var stderr = $loader.loadprim("std@file_stderr", 0)();
|
||||
|
||||
file_write(stderr, "Goodbye, World!\n", 0, 16);
|
||||
Loading…
Add table
Add a link
Reference in a new issue