import java.io.*;
public class Singlethread
{
//Main Thread
public static void main(String[] args)
{
for (int i = 0; i <= 10; i++)
{
System.out.println("From Main Thread");
}
}
}
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.