aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson08_equality/code.gleam
blob: 70a2b8910e86336665256aa8d2f5a6b7347eb998 (plain)
1
2
3
4
5
6
import gleam/io

pub fn main() {
  io.debug(100 == 100)
  io.debug(1.5 != 0.1)
}