Added example python and java apps for testing

- Java example from @catsby
This commit is contained in:
Chris Bednarski
2015-09-04 11:12:37 -07:00
parent ff0383b8f3
commit 2901c193ee
4 changed files with 33 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,12 @@
public class Hello {
public static void main(String[] args) {
while (true) {
System.out.println("Hi");
try {
Thread.sleep(1000); //1000 milliseconds is one second.
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}
}