Created
February 26, 2014 08:40
-
-
Save qickstarter/9225896 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts '2. This is main Ruby Program' | |
END { puts '3. Terminating Ruby Program' } | |
BEGIN { puts '1. Initializing Ruby Program' } | |
# => | |
# 1. Initializing Ruby Program | |
# 2. This is main Ruby Program | |
# 3. Terminating Ruby Program |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment