Skip to content

Instantly share code, notes, and snippets.

@calavera
Created November 24, 2010 22:00
Show Gist options
  • Save calavera/714511 to your computer and use it in GitHub Desktop.
Save calavera/714511 to your computer and use it in GitHub Desktop.
...
* [Duby::Compiler::JVM] Starting main method
* [Duby::Compiler::JVM] Class Foo complete (201)
* [Duby::Compiler::JVM] Class Foo complete (203)
* [Duby::Compiler::JVM] Class Bar complete (72)
* [Duby::Compiler::JVM] Class Bar complete (74)
* [Duby::Compiler::JVM] Main method complete!
* [Duby::Compiler::JVM] Generating source files...
* [Duby::Compiler::JVM] Foo
* [Duby::Compiler::JVM] Bar
* [Duby::Compiler::JVM] ...done!
// Generated from foo.mirah
public class Bar extends java.lang.Object {
}
// Generated from foo.mirah
public class Foo extends java.lang.Object {
private java.lang.String foo;
public static void main(java.lang.String[] argv) {
public Foo() {
this.foo = "foo";
}
}
class Foo
def initialize
@foo = 'foo'
end
end
class Bar
end
@rdp
Copy link

rdp commented May 26, 2011

so where's the problem here?

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