Skip to content

Instantly share code, notes, and snippets.

@Skarsnik
Last active January 12, 2016 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Skarsnik/df17adee07c18fa52c00 to your computer and use it in GitHub Desktop.
Save Skarsnik/df17adee07c18fa52c00 to your computer and use it in GitHub Desktop.
use DUser;
class DChannel {
has Int $.id;
has Str $.name;
has DUser $.owner;
}
use DChannel;
class DUser {
has Int $.id;
has Str $.name;
has DChannel @.channels;
}
perl6 -I . -e 'use DUser; use DChannel; say "Hello"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment