summaryrefslogtreecommitdiff
path: root/simple-eval.rkt
diff options
context:
space:
mode:
authorHugo <hugo.hornquist@gmail.com>2016-05-09 15:52:13 +0200
committerHugo <hugo.hornquist@gmail.com>2016-05-09 16:10:36 +0200
commit9c3637a69c186fb23fce6b253c866ddfe3a70d1e (patch)
tree53294e2c6a99d512fed053711730468056567f48 /simple-eval.rkt
parentparser now handles numbers with more than one digit, inculding decimals and o... (diff)
downloadmath-parse-9c3637a69c186fb23fce6b253c866ddfe3a70d1e.tar.gz
math-parse-9c3637a69c186fb23fce6b253c866ddfe3a70d1e.tar.xz
removed everything but the parser, move project from racket to guile
Diffstat (limited to 'simple-eval.rkt')
-rw-r--r--simple-eval.rkt7
1 files changed, 0 insertions, 7 deletions
diff --git a/simple-eval.rkt b/simple-eval.rkt
deleted file mode 100644
index 4cf6d4a..0000000
--- a/simple-eval.rkt
+++ /dev/null
@@ -1,7 +0,0 @@
-#lang racket
-
-(provide simple-eval)
-
-(define (simple-eval expr)
- 5)
-