Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/james-p-d/erlangdump
Dumping ground for miscellaneous Erlang scripts
https://github.com/james-p-d/erlangdump
erlang
Last synced: 27 days ago
JSON representation
Dumping ground for miscellaneous Erlang scripts
- Host: GitHub
- URL: https://github.com/james-p-d/erlangdump
- Owner: James-P-D
- License: mit
- Created: 2019-11-22T07:34:39.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-26T09:08:43.000Z (over 4 years ago)
- Last Synced: 2024-11-17T10:36:23.810Z (3 months ago)
- Topics: erlang
- Language: Erlang
- Size: 43 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ErlangDump
Dumping ground for miscellaneous [Erlang](https://www.erlang.org/) scripts## Basics
Mostly after watching [Derek Banas' Erlang Tutorial on YouTube](https://www.youtube.com/watch?v=IEhwc2q1zG4) or viewing [Erlang by Example](https://erlangbyexample.org/).
* [hello.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/hello.erl)
* [variables.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/variables.erl)
* [maths_and_logic.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/maths_and_logic.erl)
* [if_and_case.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/if_and_case.erl)
* [strings.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/strings.erl)
* [tuples.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/tuples.erl)
* [listtest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/listtest.erl)
* [type_conv.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/type_conv.erl)
* [recursion.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/recursion.erl)
* [mapping.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/mapping.erl)
* [records.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/records.erl)
* [higher_order_functions.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/higher_order_functions.erl)
* [file_io.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/file_io.erl)
* [error_handling.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/error_handling.erl)
* [macros.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/macros.erl)
* [concurrency.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/concurrency.erl)## Misc
* [substringtest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/substringtest.erl) Searching for substrings.. used when creating [WordSearch application](https://github.com/James-P-D/WordSearch)
* [arraytest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/arraytest.erl) Couple of tests for creating arrays. Only used lists when learning language.## Programming Erlang by Joe ArmStrong
![ProgrammingErlangBook](https://github.com/James-P-D/ErlangDump/blob/master/programming_erlang_book.jpg)