summaryrefslogtreecommitdiff
path: root/sample/test.rb
blob: 9c422cc94aa03765dad4d490240e4520f6006838 (plain)
1
2
3
4
5
index = 1
for argument in $ARGV
    printf("%d:%s\n", index, argument)
    index = index + 1
end