Created
January 4, 2014 08:24
-
-
Save yutopp/8253036 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
// これが通るなら | |
import std.stdio; | |
void main() | |
{ | |
A klass = new A; | |
klass.print(); | |
} | |
int global_value; | |
class A | |
{ | |
void print() | |
{ | |
global_value.writeln; | |
} | |
} |
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
// これも通るよねつったら通った | |
import std.stdio; | |
void main() | |
{ | |
global_value.writeln; | |
} | |
int global_value; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment