Skip to content

Instantly share code, notes, and snippets.

@atamrawi
Forked from benjholla/SE421.java
Last active September 6, 2020 19:09
Show Gist options
  • Save atamrawi/68d07594174960c7bc534a5c8b259b25 to your computer and use it in GitHub Desktop.
Save atamrawi/68d07594174960c7bc534a5c8b259b25 to your computer and use it in GitHub Desktop.
Welcome to SE421
public class COMP4384 {
public static void main(String[] args) {
print("Hello");
/*
* TODO: print World in unicode
* \u002A\u002F\u0070\u0072\u0069\u006E\u0074\u0028\u0022\u0043\u0072\u0075\u0065\u006C\u0022\u0029\u003B\u002F\u002A
*/
print("World");
}
private static void print(String s){
System.out.print(s + " ");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment