all repos — min @ 682c0d05f1ebfbb832ffe7dc7fe4cbd0f65c1e4d

A small but practical concatenative programming language.

tasks/clean.min

 1
 2
 3
 4
 5
 6
 7
 8
 9
#!/usr/bin/env min

{}
(
  "Cleaning up build files" notice
  . ls ("\.(htm|zip)$" match) filter =files
  files 'rm foreach
) %default
+clean-tasks