Skip to content

Instantly share code, notes, and snippets.

@evanchooly
Forked from railsfactory/baz.mirah
Created April 26, 2011 17:29
Show Gist options
  • Save evanchooly/942700 to your computer and use it in GitHub Desktop.
Save evanchooly/942700 to your computer and use it in GitHub Desktop.
mirah import example
#in bar folder
class Bar
class Baz
def hello
puts "hello from Baz"
end
end
end
import bar.Baz
b = Baz.new
b.hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment