Skip to content

Instantly share code, notes, and snippets.

@GuillermoBlasco
Created July 29, 2014 19:47
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 GuillermoBlasco/04ea6dddc6ee6033aa5e to your computer and use it in GitHub Desktop.
Save GuillermoBlasco/04ea6dddc6ee6033aa5e to your computer and use it in GitHub Desktop.
read hello test
javac -g Main.java
java Main
public class Main {
public static void main(String[] args) {
while (true) {
int c = System.in.read();
if ((char)c == 'h') {
System.out.print("hola");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment