Skip to content

Instantly share code, notes, and snippets.

@aerodame
Last active August 29, 2015 14:18
Show Gist options
  • Save aerodame/5e52f57b6865a95d2fd6 to your computer and use it in GitHub Desktop.
Save aerodame/5e52f57b6865a95d2fd6 to your computer and use it in GitHub Desktop.
CSS430 - Program1 Thread Main
public class ThreadDriver {
public static void main( String[] args ) {
String args[2];
args[0] = "ping"; args[1] = "10000";
new PingPong( args ).start( );
args[0] = "PING"; args[1] = "90000";
new PingPong( args ).start( );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment