Advertisement
ProzacR

perl6intro

Jul 4th, 2018
2,804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.34 KB | None | 0 0
  1. bash-4.3$ perl6
  2. You may want to `zef install Readline` or `zef install Linenoise` or use rlwrap for a line editor
  3.  
  4. To exit type 'exit' or '^D'
  5. > my $a;
  6. (Any)
  7. > my $b;
  8. (Any)
  9. > $b := $a;
  10. ===SORRY!=== Error while compiling:
  11. Cannot use bind operator with this left-hand side
  12. ------> $b := $aâ;
  13. > #https://perl6intro.com/#_assignment_vs_binding
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement