Tasks

Complete some of these tasks to upgrade your computer!

User manual

Congratulations with your new computer. We hope you enjoy it. Read this manual carefully and you will have many hours of fun.

Commands

help
Show list of known commands.
clear
Clear the screen.
reset
Resets the computer. All unsaved data is lost.
run
Runs the program currently in the editor window.

JavaScript

The language used to program your computer is JavaScript. Here is some example code:

var a = "";       // strings
var b = 17;       // texts
var c = [7,9,13]; // array

for(var i = 1; i < 10; i++)
{
  c.push(b*i);
}
    

API

write(str);   // write string to screen
read();       // read a line of text from user
sleep(sec);   // sleep for sec seconds
readfile(1);  // read a line from file #1
eof(1);       // checks if file #1 is at end
clear();      // clear the screen
fullscreen(); // toggle fullscreen
random(a,b);  // random number between a and b
say(msg);     // speak msg
httpGet(url); // fetch url
    
output checker
file1
file2
Not solved