From 0ee4f0c047934f6be3877babb5cf99c8cce71e8d Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Sun, 10 Jul 2016 16:49:17 +1200 Subject: [PATCH] Added readme. --- README.md | 7 +++++++ scheme.4th | 1 + 2 files changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6a74052 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +scheme.forth.jl +--------------- + +A hobby scheme implementation for FORTH 83. Specifically it is targeted at my +own [forth.jl](http://github.com/tgvaughan/forth.jl) which is an implementation +of FORTH on top of [Julia](http://www.julialang.org), hence the name. However +it does not rely on anything but standard FORTH 83 words. diff --git a/scheme.4th b/scheme.4th index 63a3420..269eb52 100644 --- a/scheme.4th +++ b/scheme.4th @@ -9,6 +9,7 @@ include defer-is.4th 2 constant character-type 3 constant nil-type 4 constant pair-type +5 constant symbol-type : istype? ( obj -- obj b ) over = ; -- 2.20.1