summaryrefslogtreecommitdiff
path: root/sample/opt_s.rb
blob: 56ff0eea15d0cd3e48233d6c1f54b7d20581ef01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! ./ruby -s
# test for option `-s'

if ($xyz)
  print("xyz = TRUE\n")
end
if ($zzz)
  print("zzz = ", $zzz, "\n")
end
if ($ARGV.length > 0)
  print($ARGV.join(", "), "\n")
end