ipso is a functional scripting language.
main : IO ()
main = println "Hello world!"Features
greet : IO ()
greet =
  comp
    bind you <- cmd.read `whoami`
    println "Hey, $you"ipso is a functional scripting language.
main : IO ()
main = println "Hello world!"greet : IO ()
greet =
  comp
    bind you <- cmd.read `whoami`
    println "Hey, $you"