Skip to content

Instantly share code, notes, and snippets.

@apple502j
Last active July 7, 2018 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apple502j/ef684e032ce1be9fa4028cf84549dbf9 to your computer and use it in GitHub Desktop.
Save apple502j/ef684e032ce1be9fa4028cf84549dbf9 to your computer and use it in GitHub Desktop.
false vs False 言語対決! ref: https://qiita.com/apple502j/items/54ffd7638518ea777ed1
/* mainは省略 */
int return_false(void){
return 0;
}
function return_false(){
return false;
}
def return_false():
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment