Meaningless changes.
authorTim Vaughan <tgvaughan@gmail.com>
Sun, 3 Apr 2016 00:25:55 +0000 (12:25 +1200)
committerTim Vaughan <tgvaughan@gmail.com>
Sun, 3 Apr 2016 00:25:55 +0000 (12:25 +1200)
.travis.yml
README.md [deleted file]
appveyor.yml [deleted file]
src/FORTH.jl [deleted file]
src/forth.jl [new file with mode: 0644]
test/runtests.jl

index 4e0e6f3..240c799 100644 (file)
@@ -11,4 +11,4 @@ notifications:
 # uncomment the following lines to override the default test script
 #script:
 #  - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
-#  - julia -e 'Pkg.clone(pwd()); Pkg.build("FORTH"); Pkg.test("FORTH"; coverage=true)'
+#  - julia -e 'Pkg.clone(pwd()); Pkg.build("forth"); Pkg.test("FORTH"; coverage=true)'
diff --git a/README.md b/README.md
deleted file mode 100644 (file)
index 3d34305..0000000
--- a/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# FORTH
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644 (file)
index 5482b02..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-environment:
-  matrix:
-  - JULIAVERSION: "julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
-  - JULIAVERSION: "julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
-  - JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
-  - JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
-
-branches:
-  only:
-    - master
-    - /release-.*/
-
-notifications:
-  - provider: Email
-    on_build_success: false
-    on_build_failure: false
-    on_build_status_changed: false
-
-install:
-# Download most recent Julia Windows binary
-  - ps: (new-object net.webclient).DownloadFile(
-        $("http://s3.amazonaws.com/"+$env:JULIAVERSION),
-        "C:\projects\julia-binary.exe")
-# Run installer silently, output to C:\projects\julia
-  - C:\projects\julia-binary.exe /S /D=C:\projects\julia
-
-build_script:
-# Need to convert from shallow to complete for Pkg.clone to work
-  - IF EXIST .git\shallow (git fetch --unshallow)
-  - C:\projects\julia\bin\julia -e "versioninfo();
-      Pkg.clone(pwd(), \"FORTH\"); Pkg.build(\"FORTH\")"
-
-test_script:
-  - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"FORTH\")"
diff --git a/src/FORTH.jl b/src/FORTH.jl
deleted file mode 100644 (file)
index 0e1475e..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-module FORTH
-
-# package code goes here
-
-end # module
diff --git a/src/forth.jl b/src/forth.jl
new file mode 100644 (file)
index 0000000..e720c7f
--- /dev/null
@@ -0,0 +1,24 @@
+module FORTH
+
+function input(prompt::AbstractString="")
+    print(prompt)
+    strip(readline)
+end
+
+dictCore = Set{AbstractString}([
+    "bye"
+])
+
+function coreEval(word::AbstractString)
+    if word == "bye"
+end
+
+function repl()
+
+    while true
+        line = input()
+
+    end
+end
+
+end
index d00cbba..60b6fa1 100644 (file)
@@ -1,4 +1,4 @@
-using FORTH
+using forth
 using Base.Test
 
 # write your own tests here