summaryrefslogtreecommitdiff
path: root/sample/cat.rb
blob: a3243d308d0fc0d67c60ba546e9e75f50949ccaf (plain)
1
2
3
4
5
# cat -n & `...' operator test
while gets()
  if $. == 1 ... ~ /^\*/; print("--") end
  printf("%5d: %s", $., $_)
end