Update README.org

This commit is contained in:
zongor 2025-09-01 16:19:17 -04:00
parent a508076e54
commit 1e1182e5dc
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ make
**Sample Program: =hello.zrl=** **Sample Program: =hello.zrl=**
#+BEGIN_SRC zrl #+BEGIN_SRC zrl
function main(nat argc, str[] argv) { function main(int argc, str[] argv) {
str name = argc > 1 ? argv[1] : "World"; str name = argc > 1 ? argv[1] : "World";
print("Hello, {name}!"); print("Hello, {name}!");
exits("Done"); exits("Done");