aboutsummaryrefslogtreecommitdiff
path: root/lessons/src/lesson030_tuples/code.gleam
blob: d5c63133bbd44b72a285b6827198b0eafc4bfc62 (plain)
1
2
3
4
5
6
7
8
9
10
import gleam/io

pub fn main() {
  let triple = #(1, 2.2, "three")
  io.debug(triple)

  let #(a, _, _) = triple
  io.debug(a)
  io.debug(triple.1)
}