Skip to content

Instantly share code, notes, and snippets.

@sethlogan
Created June 4, 2015 00:54
Show Gist options
  • Save sethlogan/404fd1ab3f2935411505 to your computer and use it in GitHub Desktop.
Save sethlogan/404fd1ab3f2935411505 to your computer and use it in GitHub Desktop.
class Foo
foo2_object=Foo2.new()
foo2_object.foo2Method()
def fooMethod(**arguments**)
//Code for foo method
end
end
class Foo2
//Foo2 code to access methods in Foo?
def foo2Method(**arguments**)
//Code for foo2 method
end
end
foo_object=Foo.new()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment