mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-15 23:48:55 +00:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
var HalloClass = function() {
|
|
}
|
|
HalloClass.prototype = new Process();
|
|
HalloClass.prototype.main = function() {
|
|
var stdout = this.files['stdout'];
|
|
stdout.write("Hallo Welt\n");
|
|
this.exit(0);
|
|
}
|