Skip to content

Instantly share code, notes, and snippets.

@MarioCarrion
Created January 15, 2015 03:13
Show Gist options
  • Save MarioCarrion/5eacfc19d503fd9ce6c8 to your computer and use it in GitHub Desktop.
Save MarioCarrion/5eacfc19d503fd9ce6c8 to your computer and use it in GitHub Desktop.
#!/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