Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinboers/ex-german
Set of modules with methods to conjugate German verbs written in Elixir
https://github.com/robinboers/ex-german
elixir erlang german
Last synced: 16 days ago
JSON representation
Set of modules with methods to conjugate German verbs written in Elixir
- Host: GitHub
- URL: https://github.com/robinboers/ex-german
- Owner: RobinBoers
- License: gpl-3.0
- Created: 2021-09-26T18:42:58.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-13T17:56:14.000Z (over 3 years ago)
- Last Synced: 2024-11-07T15:39:21.529Z (2 months ago)
- Topics: elixir, erlang, german
- Language: Elixir
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# German
Set of modules with methods to conjugate German verbs.
I made it to exercise both my programming skills in Elixir and German.
## Installation
Git clone from master:
```bash
git clone https://github.com/RobinBoers/ex-german
```## Examples
```elixir
iex> German.get_verb({:ich, 'gehen'})
'gehe'iex> German.get_verb({:ihr, 'arbeiten'})
'arbeitet'iex> German.get_verb({:sie, 'können'})
'kann'iex> German.get_verb({:ihr, 'möchten'})
'möchtet'iex> German.get_past_participle('fotografieren')
'fotografiert'
```## Documentation
Docs are generated using [ex_doc](https://hexdocs.pm/ex_doc/readme.html). To build, run:
```bash
mix docs
```