Skip to content

Commit

Permalink
Merge pull request #259 from parsonsjonathan/main
Browse files Browse the repository at this point in the history
Created implementation for the Chapel language
  • Loading branch information
mawerty authored Apr 30, 2024
2 parents 3152565 + 036bce9 commit 8b26a96
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ A: Thecoderunsfasterwhentherearenouselessspacesandnewlines.
- C
-
- Carbon
- Chapel
- CLIPS
- Claire
- Clojure
Expand Down
8 changes: 8 additions & 0 deletions implementations/Main.chpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module Main {
proc is_prime(number: int): bool {
return false;
}

proc main() {
}
}
1 change: 1 addition & 0 deletions optimized_implementations/main.chpl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module Main{proc is_prime(number:int):bool{return false;}proc main(){}}

0 comments on commit 8b26a96

Please sign in to comment.