Skip to content

Instantly share code, notes, and snippets.

@NZKoz
Created December 11, 2008 15:36
Show Gist options
  • Save NZKoz/34749 to your computer and use it in GitHub Desktop.
Save NZKoz/34749 to your computer and use it in GitHub Desktop.
class Customer
GREETING = "hello world!\n".freeze
def scale!
$stdout.write(GREETING)
end
end
require 'customer'
Customer.new.scale!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment