From 0a35a9dae28e4ba394e79bef25af500084ac9c7d Mon Sep 17 00:00:00 2001 From: JJ <88858615+parsonsjonathan@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:11:51 -0300 Subject: [PATCH 1/3] Created implementation for the Chapel language --- implementations/Main.chpl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 implementations/Main.chpl diff --git a/implementations/Main.chpl b/implementations/Main.chpl new file mode 100644 index 0000000..7383fd4 --- /dev/null +++ b/implementations/Main.chpl @@ -0,0 +1,8 @@ +module Main { + proc is_prime(number: int): bool { + return false; + } + + proc main() { + } +} From 5fdde08f98d48ac97c1d1cd306a3b7968a69d3cf Mon Sep 17 00:00:00 2001 From: Jonathan Parsons Date: Mon, 29 Apr 2024 15:41:35 -0300 Subject: [PATCH 2/3] Added Chapel to the Readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6e86239..fd023d8 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ A: Thecoderunsfasterwhentherearenouselessspacesandnewlines. - C - CÉ - Carbon +- Chapel - CLIPS - Claire - Clojure From 036bce945bdb0a03729fd0a229479c74990aa80d Mon Sep 17 00:00:00 2001 From: Jonathan Parsons Date: Mon, 29 Apr 2024 15:43:44 -0300 Subject: [PATCH 3/3] Optimized Chapel implementation --- optimized_implementations/main.chpl | 1 + 1 file changed, 1 insertion(+) create mode 100644 optimized_implementations/main.chpl diff --git a/optimized_implementations/main.chpl b/optimized_implementations/main.chpl new file mode 100644 index 0000000..b7f3676 --- /dev/null +++ b/optimized_implementations/main.chpl @@ -0,0 +1 @@ +module Main{proc is_prime(number:int):bool{return false;}proc main(){}} \ No newline at end of file