Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public static void main(String[] args){
  2. int a=5;
  3. new Thread(new Runnable(){
  4. @Override
  5. public void run() {
  6. System.out.println(a);
  7. }
  8. }).start();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement