├── .gitignore ├── README.md ├── TODO.md ├── actors.pl ├── distribution.pl ├── dollar_expansion.pl ├── erlang ├── README.md └── philosophers.erl ├── examples ├── fridge.pl ├── ping_pong.pl └── simple_pengine.pl ├── format.old.pl ├── format.pl ├── io.pl ├── isolation.pl ├── node.pl ├── old_tests ├── ntest.pl ├── philosophers.pl ├── pingpong.pl ├── remote.pl ├── ring.pl └── rring.pl ├── pengines2.pl ├── pengines_io.pl ├── resident.pl ├── restful_api.pl ├── rpc.pl ├── test_actors.pl └── web_prolog.pl /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/TODO.md -------------------------------------------------------------------------------- /actors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/actors.pl -------------------------------------------------------------------------------- /distribution.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/distribution.pl -------------------------------------------------------------------------------- /dollar_expansion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/dollar_expansion.pl -------------------------------------------------------------------------------- /erlang/README.md: -------------------------------------------------------------------------------- 1 | Some real Erlang examples to serve as inspiration 2 | -------------------------------------------------------------------------------- /erlang/philosophers.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/erlang/philosophers.erl -------------------------------------------------------------------------------- /examples/fridge.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/examples/fridge.pl -------------------------------------------------------------------------------- /examples/ping_pong.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/examples/ping_pong.pl -------------------------------------------------------------------------------- /examples/simple_pengine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/examples/simple_pengine.pl -------------------------------------------------------------------------------- /format.old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/format.old.pl -------------------------------------------------------------------------------- /format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/format.pl -------------------------------------------------------------------------------- /io.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/io.pl -------------------------------------------------------------------------------- /isolation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/isolation.pl -------------------------------------------------------------------------------- /node.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/node.pl -------------------------------------------------------------------------------- /old_tests/ntest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/ntest.pl -------------------------------------------------------------------------------- /old_tests/philosophers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/philosophers.pl -------------------------------------------------------------------------------- /old_tests/pingpong.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/pingpong.pl -------------------------------------------------------------------------------- /old_tests/remote.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/remote.pl -------------------------------------------------------------------------------- /old_tests/ring.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/ring.pl -------------------------------------------------------------------------------- /old_tests/rring.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/old_tests/rring.pl -------------------------------------------------------------------------------- /pengines2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/pengines2.pl -------------------------------------------------------------------------------- /pengines_io.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/pengines_io.pl -------------------------------------------------------------------------------- /resident.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/resident.pl -------------------------------------------------------------------------------- /restful_api.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/restful_api.pl -------------------------------------------------------------------------------- /rpc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/rpc.pl -------------------------------------------------------------------------------- /test_actors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/test_actors.pl -------------------------------------------------------------------------------- /web_prolog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanWielemaker/swi-erlang/HEAD/web_prolog.pl --------------------------------------------------------------------------------