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, 0 insertions, 16 deletions
diff --git a/gen/src/gleam@triple.erl b/gen/src/gleam@triple.erl
deleted file mode 100644
index 62a32da..0000000
--- a/gen/src/gleam@triple.erl
+++ /dev/null
@@ -1,16 +0,0 @@
--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.