Created
February 2, 2012 20:44
-
-
Save vwood/1725650 to your computer and use it in GitHub Desktop.
Pythonic Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.* ; | |
import java.io.* ; | |
import java.util.* ; | |
public class Server { | |
public static void main( String[] args) { | |
try { | |
ServerSocket sock = new ServerSocket(4712,100) ; | |
while(true) new Handler(sock.accept()).start() ;} | |
catch(IOException e) { | |
System.err.println(e) ;};}} | |
class Handler extends Thread { | |
public void run() { | |
Random random=new Random() ; | |
try { | |
//yada yada yada | |
catch(Exception e) { | |
System.err.println(e) ;};}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to http://stackoverflow.com/questions/237719/what-is-the-most-frustrating-programming-style-youve-encountered
(I didn't want to attribute in a comment, as that would ruin the Python with Java Comments)