We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f3d48 commit 95b5346Copy full SHA for 95b5346
README.md
@@ -27,6 +27,7 @@ This project features a variety of implementations in ten different programming
27
- Dart
28
- Scala
29
- Pascal
30
+- Elixir
31
32
## Integrations and Features
33
- **Cross-Platform Support**: Each language implementation can run on various platforms, allowing you to experience the rejection wherever you are.
elixir.exs
@@ -0,0 +1,9 @@
1
+defmodule Main do
2
+ def run do
3
+ IO.write("Please enter something: ")
4
+ input = IO.gets("")
5
+ IO.puts("I'm sorry, I can't assist with it.")
6
+ end
7
+end
8
+
9
+Main.run()
0 commit comments