Skip to content

Instantly share code, notes, and snippets.

@paulopatto
Last active December 14, 2017 16:24
Show Gist options
  • Save paulopatto/e526736ff3b960c20ae226d1f6eec566 to your computer and use it in GitHub Desktop.
Save paulopatto/e526736ff3b960c20ae226d1f6eec566 to your computer and use it in GitHub Desktop.
Morse: Qual o resultado de morse() em cada um dos casos?
/// ANSI C
int morse() {
int o = 10;
return --o-o--;
}
/// Java
public static int morse() {
int o = 10;
return --o-o--;
}
/// JavaScript
function morse() {
var o = 10;
return --o-o--;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment