summaryrefslogtreecommitdiff
path: root/test/ruby/beginmainend.rb
blob: 4ee1d7899a4e9d584eb5c53e305d6f9d8d5dcae4 (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
  puts "begin"
}

puts "main"

END {
  puts "end"
}