Skip to content

Commit 1736e80

Browse files
committed
newly added functional interface
1 parent 5a8fae5 commit 1736e80

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package java8.functionalInterface;
2+
3+
/**
4+
* Creator
5+
*/
6+
public interface Creator {
7+
8+
void create();
9+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package java8.functionalInterface;
2+
3+
public class TestMain {
4+
public static void main(String[] args) {
5+
System.out.println("Welcome to gitpod world");
6+
}
7+
}

0 commit comments

Comments
 (0)