remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / io / files / temp / temp.factor
blob7ace21932a5f697062b8930ffa573bb14f7b669d
1 ! Copyright (C) 2008 Slava Pestov, Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel io.pathnames io.directories ;
4 IN: io.files.temp
6 : temp-directory ( -- path )
7     "temp" resource-path dup make-directories ;
9 : temp-file ( name -- path )
10     temp-directory prepend-path ;