worked on the example noja json parser

This commit is contained in:
cozis
2022-08-15 20:13:25 +02:00
parent d9fd452b8b
commit 9935142a1e
2 changed files with 134 additions and 15 deletions
+7
View File
@@ -0,0 +1,7 @@
fun sayHello(name: String = "unnamed person")
print("Hello, ", name, "!\n");
sayHello("Francesco");
sayHello();
sayHello(none);