added tuples and multiple return values

This commit is contained in:
cozis
2022-04-06 13:22:31 +02:00
parent 866648ed16
commit ed63f09b57
17 changed files with 434 additions and 260 deletions
+8
View File
@@ -0,0 +1,8 @@
fun hello()
return 1, "hello";
a, b = hello();
print('a = ', a, '\n');
print('b = ', b, '\n');