This commit is contained in:
Francesco Cozzuto
2021-11-04 17:27:06 +01:00
parent 0157d28f67
commit b224f57361
5 changed files with 8 additions and 25 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ fun x(a, b, c)
x(1, 2, 3, 4, 5);
x(1, 2, 3, 4);
x(1, 2, 3);
x(1, 2); # Fails here!
x(1, 2);
x(1);
x();
+3 -4
View File
@@ -1,7 +1,6 @@
l = [1, 2, 3];
l = [1, 2, 3, 4];
print(count);
print(count(l));
print(l, '\n');
print('The list contains ', count(l), ' items.\n');
print('The list is: ', l, '.\n');