V
Size: a a a
V
DF
DF
DF
λ
P
DF
DF
DF
F
main = sequence (map putStrLn (take 1000000 $ repeat "Hello, world!"))
mapM_ putStr . take 100000 $ repeat "Hello, world!"
B
main = sequence (map putStrLn (take 1000000 $ repeat "Hello, world!"))
V
G
V
B
V
P
IntStream
.range(0, 1_000_000)
.mapToObj(i -> "Hello, World")
.forEach(System.out::println);
B
B
p
IntStream
.range(0, 1_000_000)
.mapToObj(i -> "Hello, World")
.forEach(System.out::println);