Skip to content

Commit

Permalink
Merge pull request #112 from shadowstejo/main
Browse files Browse the repository at this point in the history
add mojo /🔥 implementation
  • Loading branch information
mawerty authored Sep 27, 2023
2 parents c439790 + 9d45e63 commit 5782c7a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Lisp
Lua
Mathematica
Matlab
Mojo
OCaml
Odin
Nim
Expand Down
6 changes: 6 additions & 0 deletions implementations/main.🔥
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fn is_prime(x:Int64) -> Bool:
return False

fn main():
for i in range(0,101):
print(i,is_prime(i))
1 change: 1 addition & 0 deletions optimized_implementations/main.🔥
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fn is_prime(x:Int64) -> Bool:return False

0 comments on commit 5782c7a

Please sign in to comment.