diff options
Diffstat (limited to 'sample/test.rb')
-rw-r--r-- | sample/test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sample/test.rb b/sample/test.rb new file mode 100644 index 0000000000..9c422cc94a --- /dev/null +++ b/sample/test.rb @@ -0,0 +1,5 @@ +index = 1 +for argument in $ARGV + printf("����%d:%s\n", index, argument) + index = index + 1 +end |