I installed the perl plugin in IntelliJ IDEA 2016.1.3, but the next program doesn’t print anything immediately waiting for input, and only when you do it, it displays everything at once. Here is the code:
#!/usr/bin/perl print "Hello, what is you name?\n"; $s = <>; print 'Hello' . $s;
Thank you in advance for your help
$|=1; I don’t know if it will help or not, but it forces you to reset the output stream with each print. - Mike$|. - edem