We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Basics for people who are converting from ANT
The following ANT code
<copy todir="../new/dir"> <fileset dir="src_dir"/> </copy>
converted to vark code is:
Ant.copy( :todir = file("../new/dir"), :filesetList = { file("src_dir").fileset() } )