We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd23436 commit 5edcb35Copy full SHA for 5edcb35
arc.arc
@@ -1391,6 +1391,15 @@
1391
(def temloadall (tem file)
1392
(w/infile i file (drain:temread tem i)))
1393
1394
+(def temstore(tem val file)
1395
+ (let fields (coerce val 'list)
1396
+ (each (k v) (if acons.tem
1397
+ tem
1398
+ templates*.tem)
1399
+ (if (~assoc k fields)
1400
+ (push (list k nil) fields)))
1401
+ (writefile fields file)))
1402
+
1403
(def number (n) (in (type n) 'int 'num))
1404
1405
(def since (t1) (- (seconds) t1))
0 commit comments