https://github.com/mtsokol/erlang-course
https://github.com/mtsokol/erlang-course
erlang
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mtsokol/erlang-course
- Owner: mtsokol
- Created: 2018-04-10T08:41:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-02T11:30:26.000Z (about 8 years ago)
- Last Synced: 2025-03-02T19:49:26.912Z (over 1 year ago)
- Topics: erlang
- Language: Erlang
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Erlang Course
Completed assignments for Erlang Course
## Content
### Essentials
Implementation of basic operations and quicksort algorithm.
### RNP
Reverse Polish Notation calculator.
### Pollution
Module simulating pollution measurement system.
System allows to create new stations, insert measurements and delete them.
Also there are plenty of query commands e.g.
average pollution on given day or station with lowest pollution value.
Module provides set of tests created with HUnit.
### Ping-Pong
The basic usage of processes in Erlang.
### Pollution Server
Extended Pollution module.
### Pollution Gen Server
#### Usage
After building all .beam files:
```sh
$ erl -pa out/production/ErlangLab
> pollution_gen_server:start_link().
```