Skip to content

Instantly share code, notes, and snippets.

@aya-eiya
Created September 2, 2012 15:38
Show Gist options
  • Save aya-eiya/3600626 to your computer and use it in GitHub Desktop.
Save aya-eiya/3600626 to your computer and use it in GitHub Desktop.
Groovyで日本語プログラミングするときの注意点 ref: http://qiita.com/items/bdfe7dddbd5a15d8385d
class 俺のクラス{
public 俺のクラス(){
}
public boolean 俺のメソッド(俺のクラス 俺の引数){
return false
}
}
俺のクラス 俺のインスタンス = new 俺のクラス()
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