Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Shuffle Int/Num/Str setup into the initial meta-model bootstrap; seem…
…s they gotta be at least partially done there.
- Loading branch information
Showing
2 changed files
with
38 additions
and
6 deletions.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| # This file contains various stubs. Note that a few are created already | ||
| # outside of the setting, such as Mu/Any/Cool, Attribute, Signature/Parameter | ||
| # and Code/Block/Routine/Sub/Method. They are built in Perl6::Metamodel's | ||
| # BOOTSTRAP.pm. | ||
| my class Int is Cool { ... } | ||
| my class Num is Cool { ... } | ||
| my class Str is Cool { ... } | ||
| # outside of the setting, such as Mu/Any/Cool, Attribute, Signature/Parameter, | ||
| # Code/Block/Routine/Sub/Method and Str/Int/Num. They are built in BOOTSTRAP.pm | ||
| # in Perl6::Metamodel for now, though should be a BEGIN block in CORE.setting | ||
| # in the end. | ||
| my class Junction is Mu { } | ||
| my class Whatever is Cool { } |
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