Created
September 2, 2012 15:38
-
-
Save aya-eiya/3600626 to your computer and use it in GitHub Desktop.
Groovyで日本語プログラミングするときの注意点 ref: http://qiita.com/items/bdfe7dddbd5a15d8385d
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 俺のクラス{ | |
public 俺のクラス(){ | |
} | |
public boolean 俺のメソッド(俺のクラス 俺の引数){ | |
return false | |
} | |
} | |
俺のクラス 俺のインスタンス = new 俺のクラス() |
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 俺のクラス{ | |
public 俺のクラス(){ | |
} | |
public boolean 俺のメソッド(俺のクラス 俺の引数){ | |
return false | |
} | |
} | |
def 俺のインスタンス = new 俺のクラス() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment