Untitled

mail@pastecode.io avatar
unknown
plain_text
17 days ago
207 B
13
Indexable
Never
sub repl(Str() $msg = '', *%_) {
    say $msg;
    my $repl := REPL.new(nqp::getcomp("Raku"), %_, True);
    nqp::bindattr($repl,REPL,'$!save_ctx',nqp::ctxcaller(nqp::ctx));
    $repl.repl-loop(:no-exit);
}
Leave a Comment