aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson07_number_formats/code.gleam
blob: 73071857dc9873446f280e57fec63b33e1e84d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gleam/io

pub fn main() {
  // Underscores
  io.debug(1_000_000)
  io.debug(10_000.01)

  // Binary, octal, and hex Int literals
  io.debug(0b00001111)
  io.debug(0o17)
  io.debug(0xF)

  // Scientific notation Float literals
  io.debug(7.0e7)
  io.debug(3.0e-4)
}