Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: None | Size: 0.14 KB | Hits: 38 | Expires: Never
Copy text to clipboard
  1. //LOOP 1
  2. String buf;
  3. while (true){
  4.         buf = (something from a file);
  5. }
  6.  
  7. //LOOP 2
  8. while (true){
  9.         String buf = (something from a file);
  10. }