Code Select
: (bind (unify '(Name City Age) '("john" "new york" 22)))
22
: Name
john
: City
new york
: Age
22
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuThank you for replies guys. I also started using curl, but IMHO whole world has started using https protocol so soon or later get-url against public internet will be useless.Quote from: "vetelko"
(defroutes home-routes
(GET "/" [] (home-page))
(GET "/hello/:name" [name] (str "Hello " name))
(GET "/about" [] (about-page)))