Skip to content

Commit

Permalink
Bump to 1.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
kanaka committed Aug 2, 2024
1 parent a1a2efb commit 1d2e6d0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cljs/src/miniMAL/stepA_miniMAL.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
(if args
(EVAL (js/JSON.parse ((@E "slurp") (first args))) E)
(do
(println "miniMAL 1.2.1")
(println "miniMAL 1.2.2")
(.start
(js/require "repl")
#js {:eval #(%4 0 (try (EVAL (js/JSON.parse %1) E) (catch :default e (prn e))))
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ <h4>JavaScript Interop</h4>
})

// Print out the banner
m.eval(["println", ["`", "miniMAL 1.2.0"]])
m.eval(["println", ["`", "miniMAL 1.2.2"]])


//
Expand Down
2 changes: 1 addition & 1 deletion js/miniMAL
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Object.assign(m, {

if (process.argv[2]) { return m.load(process.argv[2]) }

console.log("miniMAL 1.2.1")
console.log("miniMAL 1.2.2")
require("repl").start({eval: (...a) => console.log(m.rep(a[0])) | a[3]()})
4 changes: 2 additions & 2 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minimal-lisp",
"version": "1.2.1",
"version": "1.2.2",
"description": "miniMAL: a Clojure-inspired Lisp in < 1024 bytes of JavaScript",
"keywords": [
"Clojure",
Expand Down
2 changes: 1 addition & 1 deletion python/stepA_miniMAL.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def EVAL(ast, env):
EVAL(loads(E.slurp(sys.argv[1])), E)
sys.exit(0)

print("miniMAL 1.2.1")
print("miniMAL 1.2.2")
while True:
try:
line = input("> ")
Expand Down

0 comments on commit 1d2e6d0

Please sign in to comment.