about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apl/playground.apl7
1 files changed, 5 insertions, 2 deletions
diff --git a/apl/playground.apl b/apl/playground.apl
index 2128c63..b331693 100644
--- a/apl/playground.apl
+++ b/apl/playground.apl
@@ -1,2 +1,5 @@
-F←∘.×⍨⍳
-F 10
\ No newline at end of file
+F←∘.×⍨⍳ ⍝ simple function to generate a multiplcation table
+F 10
+
+G←{+⍀⍵ ⍵ ⍴ ⍳⍵} ⍝ same problem, different solution
+G 10
\ No newline at end of file