summaryrefslogtreecommitdiff
path: root/ipl/packs/idol/indextst.iol
blob: 7cbea8fb778fbb99b3e86af45df027df5cdbb1c8 (plain)
1
2
3
4
5
6
7
8
9
10
class indextst()
  method index(y)
    write("index(",y,")")
  end
end

procedure main()
  x := indextst()
  x $[ "hello, world" ]
end