Make directory path: Difference between revisions

Content deleted Content added
Tim-brown (talk | contribs)
moved Javascript between Go and Perl (which is where you find "J")
Adds Clojure solution
Line 11:
It's likely that your language implements such a function as part of its standard library. If so, please also show how such a function would be implemented.
 
 
=={{header|Clojure}}==
<lang clojure>(.mkdirs (java.io.File. "/tmp/some/path/to/dir"))</lang>
 
=={{header|Go}}==