Added the inital build directory.

This commit is contained in:
John Resig 2006-08-13 15:12:35 +00:00
parent 1dbdf43658
commit 991390e242
8 changed files with 119 additions and 10 deletions

7
build/js/writeFile.js Normal file
View file

@ -0,0 +1,7 @@
importPackage(java.io);
function writeFile( file, stream ) {
var buffer = new PrintWriter( new FileWriter( file ) );
buffer.print( stream );
buffer.close();
}