aboutsummaryrefslogtreecommitdiff
path: root/gen/src/gleam@triple.erl
blob: 62a32da22ea868a79fde240e67381ffcbd33446c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.