calling start() (#13417)

This commit is contained in:
Ulisses Lima 2023-02-02 18:43:55 -03:00 committed by GitHub
parent 5f1cc6ddba
commit 98560f9d93
1 changed files with 1 additions and 0 deletions

View File

@ -9,5 +9,6 @@ public class AnonymousClassExample{
System.out.println("Thread: "+Thread.currentThread().getName()+" started");
}
});
t1.start();
}
}