aboutsummaryrefslogtreecommitdiff
path: root/compiler/TheCommand.slul
blob: 7143662d372b10e204e7eedf10764c2291ff6aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

CommandMain "the_command"

giveme
    int number = param_with_default "-n" 1
    File file = param "-f,--file"
end

# TODO maybe instance variables should go into a `data` block?
#      and constants into a `const` block?

entry main
code
    # Dummy code to avoid warning
    assert this == this
end