Created
August 25, 2020 16:00
-
-
Save Whateverable/07206a3b12a7dced4892cc080d7607a3 to your computer and use it in GitHub Desktop.
evalable6
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
class C { has $!var handles <FETCH>; method STORE(\v) { $!var := v } } constant term:<$c> = C.new; $c = 42; say $c.WHAT; |
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
(exit code 1) | |
===SORRY!=== Error while compiling /tmp/X0RJ28sMMh | |
Strange text after block (missing semicolon or comma?) | |
at /tmp/X0RJ28sMMh:1 | |
------> ETCH>; method STORE(\v) { $!var := v } }⏏ constant term:<$c> = C.new; $c = 42; sa | |
expecting any of: | |
infix | |
infix stopper | |
statement end | |
statement modifier | |
statement modifier loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment