Created
November 24, 2010 22:00
-
-
Save calavera/714511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
* [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! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated from foo.mirah | |
public class Bar extends java.lang.Object { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
def initialize | |
@foo = 'foo' | |
end | |
end | |
class Bar | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so where's the problem here?