mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-15 23:48:55 +00:00
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
var ClearClass = function() {}
|
|
ClearClass.prototype = new Process();
|
|
ClearClass.prototype.main = function(args){
|
|
this.files["stdout"].write("\033[0:0H");
|
|
this.files["stdout"].write("\033[2J");
|
|
this.exit(0);
|
|
}
|