aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/compile/modules/module1.a68
blob: f49a747033e008b6765f767563e4175cfdc271d6 (plain)
1
2
3
4
5
6
7
8
9
module Module1 =
def
    pub mode MyInt = int;
    pub int beast_number := 666;
    pub string who = "jemarch";
    puts ("Hello from module'n")
postlude
    puts ("Bye from module'n")
fed