Added the inital build directory.
This commit is contained in:
parent
1dbdf43658
commit
991390e242
8 changed files with 119 additions and 10 deletions
7
build/js/writeFile.js
Normal file
7
build/js/writeFile.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
importPackage(java.io);
|
||||
|
||||
function writeFile( file, stream ) {
|
||||
var buffer = new PrintWriter( new FileWriter( file ) );
|
||||
buffer.print( stream );
|
||||
buffer.close();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue