Skip to content

Instantly share code, notes, and snippets.

@jaytaph
Created February 27, 2013 19:46
Show Gist options
  • Save jaytaph/5051052 to your computer and use it in GitHub Desktop.
Save jaytaph/5051052 to your computer and use it in GitHub Desktop.
import io;
class foo {
public method bar() {
io.print("Hi, this is ", self.__name(), ".bar\n");
}
}
import foo;
f = foo();
foo.bar();
// Outputs: Hi, this is foo.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment