summaryrefslogtreecommitdiffstats
path: root/chall/ply-2.2/example/BASIC/func.bas
diff options
context:
space:
mode:
Diffstat (limited to 'chall/ply-2.2/example/BASIC/func.bas')
-rw-r--r--chall/ply-2.2/example/BASIC/func.bas5
1 files changed, 0 insertions, 5 deletions
diff --git a/chall/ply-2.2/example/BASIC/func.bas b/chall/ply-2.2/example/BASIC/func.bas
deleted file mode 100644
index 447ee16..0000000
--- a/chall/ply-2.2/example/BASIC/func.bas
+++ /dev/null
@@ -1,5 +0,0 @@
-10 DEF FDX(X) = 2*X
-20 FOR I = 0 TO 100
-30 PRINT FDX(I)
-40 NEXT I
-50 END