-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHello.java
More file actions
18 lines (16 loc) · 752 Bytes
/
Hello.java
File metadata and controls
18 lines (16 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Hello{
public static void main(String args[]){
for (int i=1;i<=10;i++){
System.out.println("Hello World....."+i);
System.out.println("Thanks for the webhooks demo..");
System.out.println("Thanks for the webhooks demo1..");
System.out.println("Thanks for the webhooks demonstration..");
System.out.println("Thanks for the webhooks demonstration 2..");
System.out.println("Thanks for the webhooks demonstration 3..");
System.out.println("Thanks for the webhooks demonstration 4..");
System.out.println("Thanks for the webhooks demonstration 5..");
System.out.println("Thanks for the webhooks demonstration 6..");
System.out.println("Thanks for the webhooks demonstration 7..");
}
}
}