aboutsummaryrefslogtreecommitdiff
path: root/learn-you-some-erlang/dolphins.erl
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2024-02-23 07:08:18 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2024-02-23 07:08:18 +0100
commit5a9cdd3cc89507d4d74f8bded56ce5e037b3b56e (patch)
tree982ca2e7f9ac4e8c350dfb5c4f60bcfdfff5afaf /learn-you-some-erlang/dolphins.erl
parent05ae56e5e89abf2993f84e6d52b250131f247c35 (diff)
downloaderlang-workshop-5a9cdd3cc89507d4d74f8bded56ce5e037b3b56e.tar.gz
erlang-workshop-5a9cdd3cc89507d4d74f8bded56ce5e037b3b56e.tar.bz2
erlang-workshop-5a9cdd3cc89507d4d74f8bded56ce5e037b3b56e.tar.xz
erlang-workshop-5a9cdd3cc89507d4d74f8bded56ce5e037b3b56e.zip
wip
Diffstat (limited to 'learn-you-some-erlang/dolphins.erl')
-rw-r--r--learn-you-some-erlang/dolphins.erl34
1 files changed, 34 insertions, 0 deletions
diff --git a/learn-you-some-erlang/dolphins.erl b/learn-you-some-erlang/dolphins.erl
new file mode 100644
index 0000000..1e84b77
--- /dev/null
+++ b/learn-you-some-erlang/dolphins.erl
@@ -0,0 +1,34 @@
+-module(dolphins).
+-compile(export_all).
+
+dolphin1() ->
+ receive
+ do_a_flip ->
+ io:format("How about no?~n");
+ fish ->
+ io:format("So long and thanks for all the fish!~n");
+ _ ->
+ io:format("Heh, we're smarter than you humans.~n")
+ end.
+
+dolphin2() ->
+ receive
+ {From, do_a_flip} ->
+ From ! "How about no?";
+ {From, fish} ->
+ From ! "So long and thanks for all the fish!";
+ _ ->
+ io:format("Heh, we're smarter than you humans.~n")
+ end.
+
+dolphin3() ->
+ receive
+ {From, do_a_flip} ->
+ From ! "How about no?",
+ dolphin3();
+ {From, fish} ->
+ From ! "So long and thanks for all the fish!";
+ _ ->
+ io:format("Heh, we're smarter than you humans.~n"),
+ dolphin3()
+ end.