Skip to content

Instantly share code, notes, and snippets.

@main--
Created November 25, 2014 21:56
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 main--/98d2b09d779b548443d9 to your computer and use it in GitHub Desktop.
Save main--/98d2b09d779b548443d9 to your computer and use it in GitHub Desktop.
Deal with it.
$ cat Obviously.java
public class Obviously {
public static void main(String[] args) {
/* a */ System.out.println("I am evil.");
/* b */ int a, b, c;
/* c */ a = b = 42;
/* d */ c = a + b;
/* e‮ ;7331 = c ‭ */
/* f */ System.out.println(c);
}
}
$ javac Obviously.java
$ java Obviously
I am evil.
84
$
https://imgur.com/X51q389
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment