As a software engineer, my first blog should start with a “Hello world” program.

def hello_world()
  puts "Hello world"
end
hello_world()
#=> prints 'Hello world' to STDOUT.

Another good examples for “Hello world”.