Advertisement
JoelSjogren

Untitled

Jun 14th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. public class Main {
  2.     int a = 0;
  3.     int b = 1;
  4.     int c = 2;
  5.     int d = 123;
  6.  
  7.     public static void main(String[] args) throws InterruptedException {
  8.         // Prints "Hello, World" to the terminal window.
  9.         System.out.println("Hello, World");
  10.        
  11.         int a = 9;
  12.         int b = 19;
  13.         int c = 29;
  14.         int d = 1239;
  15.        
  16.         Thread.sleep(4000000);
  17.        
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement