Skip to content

Commit

Permalink
Added a java example program.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkff committed Oct 8, 2011
1 parent fd3542a commit 54410a9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions greg-examples/java/src/org/greg/examples/Main.java
@@ -0,0 +1,12 @@
package org.greg.examples;

import org.greg.client.Greg;

public class Main {
public static void main(String[] args) throws InterruptedException {
for(int i = 0; ; ++i) {
Greg.log("Hello from raw api #" + i);
Thread.sleep(100);
}
}
}

0 comments on commit 54410a9

Please sign in to comment.