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 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() { + } +} 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