tokay 0.6.13

Tokay is a programming language designed for ad-hoc parsing.
Documentation
# Test for resolving usages of generic instances before their definition

HelloEarth : @{
    Hello<Earth>("modified")
}

Hello : @<World> mode = "standard" {
    'Hello' _ Expect<Self>  print(mode)
    World  print(*World)
}

Earth : @{
    'Earth'
}

HelloEarth

#---
#HelloHelloEarth
#---
#<parselet Earth>
#standard
#modified