Java Stream Map Int to char
hello.chars()
.mapToObj(i -> (char)i)
.forEach(System.out::println);
Dr. iterations
hello.chars()
.mapToObj(i -> (char)i)
.forEach(System.out::println);