Skip to content

Instantly share code, notes, and snippets.

@jdonaldson
jdonaldson / Main.hx
Created December 27, 2019 20:02
Paths example
class Main {
static function main(){
var router = Paths.buildRouter(Page);
var o = router(["Home"]);
trace(o + " is the value for o");
var p = router(["Foo","Baz", "1"]);
trace(p + " is the value for p");