mirror of
https://github.com/exoticorn/curlywas.git
synced 2026-01-20 11:46:43 +01:00
15 lines
304 B
Plaintext
15 lines
304 B
Plaintext
import "env.memory" memory(4);
|
|
import "env.printString" fn printString(i32);
|
|
import "env.printChar" fn printChar(i32);
|
|
|
|
export fn upd() {
|
|
printChar(12);
|
|
printChar('Test');
|
|
printChar('\x1f\x10\x10');
|
|
printChar('abc\n');
|
|
printString(0);
|
|
}
|
|
|
|
data 0 {
|
|
"\x0e\x64\"Colors!!!\"\x0e\1\0"
|
|
} |