aboutsummaryrefslogtreecommitdiff
path: root/gen/src/gleam@triple.erl
diff options
context:
space:
mode:
Diffstat (limited to 'gen/src/gleam@triple.erl')
-rw-r--r--gen/src/gleam@triple.erl16
1 files changed, 16 insertions, 0 deletions
diff --git a/gen/src/gleam@triple.erl b/gen/src/gleam@triple.erl
new file mode 100644
index 0000000..62a32da
--- /dev/null
+++ b/gen/src/gleam@triple.erl
@@ -0,0 +1,16 @@
+-module(gleam@triple).
+-compile(no_auto_import).
+
+-export([first/1, second/1, third/1]).
+
+first(Trip) ->
+ {A, _, _} = Trip,
+ A.
+
+second(Trip) ->
+ {_, A, _} = Trip,
+ A.
+
+third(Trip) ->
+ {_, _, A} = Trip,
+ A.