packages feed

dhall-lex-0.2.0.0: test/data/local.dhall

-- line comment
{- block comment -}
{- {- nested comment -} -}

let boolSwitch =
  if True != False
    then "good"
    else "something is off"
in

let boolExpr =
  True || False
in

let map = https://ipfs.io/ipfs/QmQ8w5PLcsNz56dMvRtq54vbuPe9cNnCCUXAQp6xLc6Ccx/Prelude/List/map
in

let function =
  λ(x : List Integer) → map Integer Text Integer/show x
in

boolSwitch