home: hub: zuo

ref: b627a0cb99f603a0cc1bcf69be1da5eb00135cf3
dir: /main.zuo/

View raw version
#lang zuo

(for-each
 alert
 (append
  (list ""
        "Welcome to Zuo!"
        ""
        "This message is from \"main.zuo\"."
        ""
        "Probably, you're seeing this message because you ran Zuo with no arguments,"
        "in which case \"main.zuo\" in the current directory is loaded by default."
        ""
        "If you want to run your own program, supply the program's path as an argument."
        "A program file will start with `#lang`, and most likely it starts `#lang zuo`."
        "Additional arguments are made available to the target program through the"
        "`command-line-arguments` procedure (in languages like `#lang zuo`, at least)."
        ""
        "If you want to type in a program directly, supply the empty string \"\" in"
        "place of a file path. You'll still need to start the program with something"
        "like `#lang zuo`."
        "")))