diff --git a/Java/LambdaHelloWorld.java b/Java/LambdaHelloWorld.java new file mode 100644 index 0000000..e4e7b78 --- /dev/null +++ b/Java/LambdaHelloWorld.java @@ -0,0 +1,5 @@ +public class LambdaHelloWorld { + public static void main(String[] args) { + "Hello, World!".chars().mapToObj(c -> (char) c).forEach(System.out::println); + } +} \ No newline at end of file diff --git a/README.md b/README.md index 6a06bbd..f751f1b 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,4 @@ Feel free to add your username here :) * [MauricioLanda](https://github.com/MauricioLanda) * [ShannonMCook](https://github.com/shannonmcook) * [Lashuk1729](https://github.com/Lashuk1729) +* [shubhampaliwal3011](https://github.com/shubhampaliwal3011)