# how do I put a ? in a url for a route in prolouge? seems like a pretty # fundamental thing for urls app.addRoute("/wtvr?{name}", wtvrProc) Error: unhandled exception: Illegal characters occurred in the mapped pattern,please restrict to alphanumeric, or the following: - . _ ~ /  { } & ' [RouteError] # figured it out before posting, have to use just /wtvr in the path and use # ctx.getQueryParamsOption("name") in the function