Skip to content

Instantly share code, notes, and snippets.

@railsfactory
Created April 26, 2011 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save railsfactory/942695 to your computer and use it in GitHub Desktop.
Save railsfactory/942695 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
@evanchooly
Copy link

package bar

class Baz
def hello
puts "hello from Baz"
end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment