Created
April 25, 2017 20:40
-
-
Save anonymous/8f7584cf60fbbead4f53d2d5dc39f8fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl6 | |
use lib <lib>; | |
use Physics; | |
use Alien; | |
use Galaxy; | |
my %physics = LawCmd.create(@*ARGS.Str); | |
#my %physics-cnf = LawCnf.create('bin/laws'); | |
say %physics.perl; | |
#say %physics-cnf.perl; | |
#say $laws<realm>[0]<block><law>[1]<key>: | |
#my $universe = Universe.new(name => 'universe', physics => @*ARGS); | |
#my $universe = Universe.new(name => 'universe', laws => @*ARGS); | |
#my $physics = Physics.new(laws => @*ARGS); | |
#say $physics.physics; | |
#$physics.define; | |
#say $physics.phyhash; | |
#say $physics.phyhash<Galaxy><core>; | |
#say $physics.phyhash<Nebula><Helix>; | |
#$universe.physics(@*ARGS); | |
#say %physics<power>.WHAT; | |
#say %physics<power>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment