This is my first post - so hello to all and am very excited to write a lot of my thoughts here. Stay tuned. Let me try a code snippet! def hello(name) print "Hi, %s" % name end hello('Tom') #=> prints 'Hi, Tom' to STDOUT.