Skip to content

Instantly share code, notes, and snippets.

@ricardobeat
Created August 2, 2010 18:35
Show Gist options
  • Save ricardobeat/505089 to your computer and use it in GitHub Desktop.
Save ricardobeat/505089 to your computer and use it in GitHub Desktop.
w = new Stream('net://'+jsArguments[0]);
r = true;
while(r){
sleep(500);
txt = system.stdin.readLine();
if (txt) {
w.writeln( txt );
}
if (txt == 'quit'){
r = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment