Silly question about flood in IDE

Hello world, new here with a silly question that probably belongs in some hell hole like a vs code discord server. What tool are people using to flood fill output windows with text? I see it a lot in live coding. 'flood "what am I doing?"' and it spams the output pane with that text.

Maybe an extension?

Thanks and hello!!!

Hi! It's a custom function, found it in: kindohm's repo.

Put this in your BootTidal.hs:

flood msg = 
    let io_flood = [putStr (msg) | x <- replicate 3000 msg]
    in sequence_ $ io_flood 

(Edit, fixed function)

1 Like