Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

perl Padre IDE standard input not working

Tags:

stdin

perl

padre

I'm using padre 0.64 as perl IDE on windows vista The standard input command is not working , I tried the same code on the cmd line and it did work i.e

 my $k = <>;
 print $k; 

Is there a way to fix it ?

like image 444
Mariya Avatar asked Dec 14 '11 20:12

Mariya


1 Answers

It's quite an old version of Padre. The internal output window is that, just an output window. You need to turn on the "Use external window for execution" (checking the box). In 0.91 it is in Tools -> Preferences -> Language Perl 5 but it was somewhere else in 0.64.

It used to be in "Tools -> Preferences -> Run Parameters"

like image 109
szabgab Avatar answered Oct 23 '22 00:10

szabgab