diff options
| author | Miki Tebeka <miki.tebeka@gmail.com> | 2015-03-01 06:12:42 +0200 |
|---|---|---|
| committer | Miki Tebeka <miki.tebeka@gmail.com> | 2015-03-01 06:12:42 +0200 |
| commit | 9fb199e2cb2cf44cd61c2a226193a70f6013aadc (patch) | |
| tree | 325a2a8e33e3e8d18217d10854152cab82ac8b61 /vb | |
| parent | 49916f9402e30a5277146355be878b32ec30f46d (diff) | |
| parent | 2cb013877c4ed41d245ce7c5525405c4833c503d (diff) | |
| download | mal-9fb199e2cb2cf44cd61c2a226193a70f6013aadc.tar.gz mal-9fb199e2cb2cf44cd61c2a226193a70f6013aadc.zip | |
Merge branch 'master' of https://github.com/kanaka/mal
Diffstat (limited to 'vb')
| -rw-r--r-- | vb/Makefile | 4 | ||||
| -rw-r--r-- | vb/stepA_mal.vb (renamed from vb/stepA_interop.vb) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vb/Makefile b/vb/Makefile index d9ce097..25d9b96 100644 --- a/vb/Makefile +++ b/vb/Makefile @@ -5,14 +5,14 @@ DEBUG = TESTS = SOURCES_BASE = readline.vb types.vb reader.vb printer.vb -SOURCES_LISP = env.vb core.vb stepA_interop.vb +SOURCES_LISP = env.vb core.vb stepA_mal.vb SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) ##################### SRCS = step0_repl.vb step1_read_print.vb step2_eval.vb \ step3_env.vb step4_if_fn_do.vb step5_tco.vb step6_file.vb \ - step7_quote.vb step8_macros.vb step9_try.vb stepA_interop.vb + step7_quote.vb step8_macros.vb step9_try.vb stepA_mal.vb LIB_CS_SRCS = getline.cs LIB_VB_SRCS = $(filter-out step%,$(filter %.vb,$(SOURCES))) diff --git a/vb/stepA_interop.vb b/vb/stepA_mal.vb index f9af038..6778e0a 100644 --- a/vb/stepA_interop.vb +++ b/vb/stepA_mal.vb @@ -13,7 +13,7 @@ Imports MalFunc = Mal.types.MalFunc Imports MalEnv = Mal.env.Env Namespace Mal - Class stepA_interop + Class stepA_mal ' read Shared Function READ(str As String) As MalVal Return reader.read_str(str) |
