Re: command auto-completion in perl6 shell

2017-05-30 Thread Shrivats
$result = 8; > > say $res > Hi, As it stands right now, perl6 REPL is a bare bones shell with just enough functionality. You may also add readline using `zef install Readline` and use it with the REPL. Autocomplete feature might be added in later releases. Shrivats

Re: Need "contains" help

2017-05-02 Thread Shrivats
Careful :-) You're actually closing the single quote you​started with perl6 -e. In other words, this is your Shell's doing. You can execute this as a script with single quote around string literals with no issues Streetcars On May 3, 2017 10:27, "ToddAndMargo" wrote: > Hi All, > > Why does th