basic: stmt-level indexing successfully wip

This commit is contained in:
minjaesong
2020-12-15 17:55:56 +09:00
parent 71cdd68a2e
commit f4f1f51804
2 changed files with 269 additions and 225 deletions

3
assets/facmap Normal file
View File

@@ -0,0 +1,3 @@
10 DEFUN FAC(N)=IF N==0 THEN 1 ELSE N*FAC(N-1)
20 K=MAP(FAC, 1 TO 10)
30 PRINT K