Skip to content

Commit 95b5346

Browse files
committed
Add Elixir
1 parent b2f3d48 commit 95b5346

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This project features a variety of implementations in ten different programming
2727
- Dart
2828
- Scala
2929
- Pascal
30+
- Elixir
3031

3132
## Integrations and Features
3233
- **Cross-Platform Support**: Each language implementation can run on various platforms, allowing you to experience the rejection wherever you are.

elixir.exs

+9
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)