9 lines
229 B
Text
9 lines
229 B
Text
f: openw("/output.txt");
|
|
close(f);
|
|
|
|
f: openw("output.txt");
|
|
close(f);
|
|
|
|
/* Maxima has no function to create directories, but one can use the underlying Lisp system */
|
|
|
|
:lisp (mapcar #'ensure-directories-exist '("docs/" "/docs/"))
|