Hello everyone, I’m building a web framework using jester and trying to create
a dynamic router for my admin dashboard. When get “/admin/@page” is called the
goal is to call a procedure buildPage() which would take another procedure as a
parameter. That parameter is built by concatinating “renderA” & “page”. Page is
the get parameter. Then I would turn that string into a procedure and call a
renderALogin() template via buildPage(). In there i just call renderAHeader(),
page parameter and renderAFooter(). I had something in mind smoething like how
$ casts into string. I just worked as a backend php dev so im trying something
new, please help, thank you.