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) }