Quick actions

cmd+k|ctrl+k

Navigation

Languages

"circularity saw" for compunit dependences

Snippet info

Language

Raku

Visibility

public

Author

raiph.mellor

Created

2021-09-15T14:08:51.98025Z

Updated

2021-09-15T14:10:49.992359Z

use lib '.';
use A;

say $*RAKU.compiler.version;

my $a = A.new(x => -1);
say $a++; # A.new(x => -1)
say ++$a; # A.new(x => 1)
say ++$a; # A.new(x => 2)
INFO