Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johari/prrg.ex
An experiment with prorogues in elixir
https://github.com/johari/prrg.ex
Last synced: 28 days ago
JSON representation
An experiment with prorogues in elixir
- Host: GitHub
- URL: https://github.com/johari/prrg.ex
- Owner: johari
- Created: 2013-10-31T15:05:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-31T16:30:48.000Z (about 11 years ago)
- Last Synced: 2023-03-24T06:46:53.508Z (almost 2 years ago)
- Language: Elixir
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prrg
```
nima@jubuntu:/tmp/prrg$ mix compile
nima@jubuntu:/tmp/prrg$ mix run example.exs
def get_header(arg0, arg1) do
"Nima Johari"
end
def get_header(arg0, arg1) do
"Prorogues in Elixir"
end
def get_body(arg0) do
"Nice, huh?"
end
Sample implementation of prorogues
From: Nima Johari
Subject: Prorogues in Elixir
Nice, huh?
nima@jubuntu:/tmp/prrg$ mix run example.exs 2>/dev/null
Sample implementation of prorogues
From: Nima Johari
Subject: Prorogues in Elixir
Nice, huh?
nima@jubuntu:/tmp/prrg$
```# Also see
* [An example](/example.exs)
* [The implementation](/lib/prrg.ex)