Skip to content

Commit

Permalink
Merge pull request #122 from JstnMcBrd/monkey
Browse files Browse the repository at this point in the history
Add Monkey implementation
  • Loading branch information
mawerty authored Jan 11, 2024
2 parents 15ba3f2 + 4a71981 commit 32dac9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Lua
Mathematica
Matlab
Mojo
Monkey
OCaml
Odin
Nim
Expand Down
3 changes: 3 additions & 0 deletions implementations/main.monkey
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
let is_prime = fn(number) {
return false;
}
1 change: 1 addition & 0 deletions optimized_implementations/main.monkey
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
let is_prime=fn(n){false}

0 comments on commit 32dac9a

Please sign in to comment.