Current section

Files

Jump to
gleam_stdlib gen src gleam@triple.erl
Raw

gen/src/gleam@triple.erl

-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.