geam-stdlib 0.2.0

Official Gleam standard-library providers for Geam
Documentation
1
2
3
4
5
6
7
8
9
10
import gleam/io

pub fn main() {
  io.print("before")
  io.println("stdout line")
  echo Nil as "between"
  io.print_error("after")
  io.println_error("stderr line")
  panic as "stop"
}