Perl6 REPL - 未声明变量

时间:2016-08-16 22:38:01

标签: perl6

如何定义可在下一个语句中使用的变量?

到目前为止 my $a = 0$a = 0 在没有获得声明的行之后无法使用: Variable '$a' is not declared

1 个答案:

答案 0 :(得分:2)

这适用于最近的perl6 - " perl6 --version"对你说?

$ perl6 --version
This is Rakudo version 2016.07.1 built on MoarVM version 2016.07
implementing Perl 6.c.
$ perl6
You may want to `panda install Readline` or `panda install Linenoise` or use rlwrap for a line editor

To exit type 'exit' or '^D'
> my $a = 4;
4
> $a;
4
>