Skip to content

Commit

Permalink
Add Monkey implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
JstnMcBrd committed Jan 4, 2024
1 parent 9a89a61 commit 4a71981
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 @@ -71,6 +71,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 4a71981

Please sign in to comment.