Skip to content

Instantly share code, notes, and snippets.

@Acarus
Created December 31, 2018 21:27
Show Gist options
  • Save Acarus/fd63041798cf7f1a007e23ee0d460a5f to your computer and use it in GitHub Desktop.
Save Acarus/fd63041798cf7f1a007e23ee0d460a5f to your computer and use it in GitHub Desktop.
Execute me
public class Main {
public static void main(String[] args) {
int[] msg = {73, 110, 32, 84, 104, 101, 32, 78, 101, 119, 32, 89, 101, 97, 114, 44, 10, 119, 101, 32, 119, 105, 115, 104, 32, 121, 111, 117, 32, 116, 104, 101, 32, 98, 101, 115, 116, 32, 121, 101, 97, 114, 32, 121, 111, 117, -30, -128, -103, 118, 101, 32, 101, 118, 101, 114, 32, 104, 97, 100, 44, 10, 97, 110, 100, 32, 116, 104, 97, 116, 32, 101, 97, 99, 104, 32, 78, 101, 119, 32, 89, 101, 97, 114, 10, 119, 105, 108, 108, 32, 98, 101, 32, 98, 101, 116, 116, 101, 114, 32, 116, 104, 97, 110, 32, 116, 104, 101, 32, 108, 97, 115, 116, 46, 10, 77, 97, 121, 32, 121, 111, 117, 32, 114, 101, 97, 108, 105, 122, 101, 32, 121, 111, 117, 114, 32, 102, 111, 110, 100, 101, 115, 116, 32, 100, 114, 101, 97, 109, 115, 10, 97, 110, 100, 32, 116, 97, 107, 101, 32, 116, 105, 109, 101, 32, 116, 111, 32, 114, 101, 99, 111, 103, 110, 105, 122, 101, 32, 97, 110, 100, 32, 101, 110, 106, 111, 121, 10, 101, 97, 99, 104, 32, 97, 110, 100, 32, 101, 118, 101, 114, 121, 32, 98, 108, 101, 115, 115, 105, 110, 103, 46, 10, 10, 72, 97, 112, 112, 121, 32, 78, 101, 119, 32, 89, 101, 97, 114, 44, 10, 65, 110, 100, 32, 109, 97, 110, 121, 32, 109, 111, 114, 101, 33, 10};
for (int ch : msg) {
System.out.print((char) ch);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment