I recently started using Arc for all my programs. (I'm never going back to any other language!) So I took the helloworld code for web apps: (defop hello req
(pr "hello world"))
Now say I have a string url: (let url "hello"
(defop url req
(pr "hello world")))
But this just defines /url instead. How can I use url to define /hello? |