forked from salagarsprabu/git2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.java
More file actions
22 lines (20 loc) · 994 Bytes
/
Hello.java
File metadata and controls
22 lines (20 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 demo2..");
System.out.println("demo on webhooks - 04sep 2020");
System.out.println("demo on webhooks - Nov 25 2020- demo");
System.out.println("demo on webhooks - Jan 06 2021 demo4");
System.out.println("demo on webhooks - Jan 12 2021 demo52");
System.out.println("demo on webhooks - March 19 ");
System.out.println("demo on webhooks - March 19 second version");
System.out.println("demo on webhooks - March 03 april demo 44444");
System.out.println("demo on webhooks demo May 27 - demo1");
System.out.println("demo on webhooks demo July 01 - demo2 webhook");
System.out.println("demo on webhooks demo 12 Oct- demo11 webhook demo");
System.out.println("demo on webhooks demo 28th Oct javademo webhook demo");
}
}
}