diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-01-07 18:51:03 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-01-07 18:51:03 +0100 |
commit | 9240342b366db9999f11659a1f1c396ba418ad78 (patch) | |
tree | f34e9259cbb6f8d4bcdea234e4b2c927950411cc /Year_2/SE/L21_ex2 | |
parent | ba36beaec6d37d26b075d96e58aad73151d6d39e (diff) |
Adds
Diffstat (limited to 'Year_2/SE/L21_ex2')
-rw-r--r-- | Year_2/SE/L21_ex2/Main.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Year_2/SE/L21_ex2/Main.java b/Year_2/SE/L21_ex2/Main.java new file mode 100644 index 0000000..6f077f9 --- /dev/null +++ b/Year_2/SE/L21_ex2/Main.java @@ -0,0 +1,11 @@ +import java.util.List; + +public class Main { + public static void main(String[] args) { + List<String> l = List.of("to", "speak", "the", "truth", "and", "pay", "your", "debts"); + l.stream() + .map(x -> x.charAt(0)) + .forEach(c -> System.out.print(c)); + } +} + |