Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. BEGIN { with '/tmp/Foo/'.mkdir { .add('Foo.pm6').spurt: 「class Foo { has $.bar where do require ::('Bar') }」; .add('Bar.pm6').spurt: 「use Foo; class Bar { has Foo $.foo }」 }; use lib '/tmp/Foo'; use Bar; use Foo; Foo.new: :bar(Bar)
Add Comment
Please, Sign In to add comment