Skip to content

Commit

Permalink
Merge pull request #240 from cliserkad/main
Browse files Browse the repository at this point in the history
add fiz implementation
  • Loading branch information
mawerty authored Jan 18, 2024
2 parents f27599a + 8dbb998 commit 3cf3093
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ A: Thecoderunsfasterwhentherearenouselessspacesandnewlines.
- F#
- Farsi (Persian)
- Fish
- fiz
- FORTH
- FORTRAN 77
- Fortran 95
Expand Down
5 changes: 5 additions & 0 deletions implementations/Main.fiz
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type Main {
i32 is_prime(i32 n) {
return false
}
}
1 change: 1 addition & 0 deletions optimized_implementations/Main.fiz
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
type Main{i32 is_prime(i32 n){return false}}

0 comments on commit 3cf3093

Please sign in to comment.