mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
#include lib.js
|
|
var f = newFile(arguments[0]);
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
f.writeln(arguments[i]);
|
|
}
|
|
f.close(); |