-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
According to the specification section 3.7:
GOTOPOINT(n)MUST register a jump target identified by the runtime valuen, wherenMAY be eitherINTorSTR. Negative integer gotopoint identifiers are invalid.
The implementation, however, allows GOTOPOINTs of any type, and allows negative INT GOTOPOINTs.
Prefix REPL. Enter statements, blank line to run buffer.
>>> GOTOPOINT(<>)
>>> GOTOPOINT([0b1])
>>> GOTOPOINT(LAMBDA INT: (){})
>>> GOTOPOINT(ASYNC{})
>>> GOTOPOINT(0b1.0)
>>> GOTOPOINT(-0b1)
>>>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working