Blasanka

133
reputation
1
10

Watch Jon Skeet talk in Stack Overflow HQ.

See top SO users

Yes this is 2018,

enter image description here

Miss you Java, busy with Dart.

Java:

List<String> carriers = Arrays.asList("web", "software", "mobile");
System.out.print(carriers.stream()
                        .map(String::toUpperCase)
                        .collect(joining(", "))
                        .concat(" developer"));

Dart:

List<String> carriers = ['web', 'mobile', 'desktop'];
print('''${carriers.join(', ')
                   .toUpperCase()} developer''');

See, who I respect on this amazing world.