Created
January 15, 2015 03:13
-
-
Save MarioCarrion/5eacfc19d503fd9ce6c8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env ruby | |
require_relative 'base' | |
require_relative 'version1' | |
x = Version1.new | |
x.first_name = 'Mario' | |
x.last_name = 'Carrion' | |
puts x.columns | |
puts x.values | |
# outputs: | |
# last_name,first_name | |
# Carrion,Mario |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment