cleaned up the set of samples

This commit is contained in:
cozis
2022-03-08 22:20:04 +01:00
parent 542177e46f
commit 94dc01dcaa
12 changed files with 4 additions and 186 deletions
+10
View File
@@ -0,0 +1,10 @@
fun x(a, b, c)
print('a = ', a, '\nb = ', b, '\nc = ', c, '\n\n');
x(1, 2, 3, 4, 5);
x(1, 2, 3, 4);
x(1, 2, 3);
x(1, 2);
x(1);
x();