Skip to content

Instantly share code, notes, and snippets.

@yutopp
Created January 4, 2014 08:24
Show Gist options
  • Save yutopp/8253036 to your computer and use it in GitHub Desktop.
Save yutopp/8253036 to your computer and use it in GitHub Desktop.
// これが通るなら
import std.stdio;
void main()
{
A klass = new A;
klass.print();
}
int global_value;
class A
{
void print()
{
global_value.writeln;
}
}
// これも通るよねつったら通った
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