• Home
  • About
  • Refrence
  • Tutorials
  • Downloads
  • Bugs


  • Statement Function Syntax
    printlnUsed to print something on the screenprintln [string/number/variable]
    clear()Used to clear the screenclear()
    input()Used to input a variableinput([string], [var])
    if()Used to do boolean operationsif([var] = [condition]) {
    Block of statement/s
    }
    elseUsed in if in false blocksif([var] = [condition]) {
    True
    else {
    False
    }
    }
    elifUsed in if in other blocksif([var] = [condition]) {
    Block of statement/s
    elif {
    Block of Statement/s
    else {
    Block of statement/s
    }
    }
    }
    forUsed to loop a vertain block of statement/s a certain amount of timesfor i = [startnum] to [endnum] {
    Block of statement/s
    }
    whileUsed to loop a certain block of statement/s a uncertain amount of timeswhile [expression] {
    Block of statement/s
    }
    setScreenUsed to make the screen of a cetain width or heightsetScreen([screenx], [screeny], [bit of color])
    lineUsed to create a lineline([x1], [y1])-([x2],[y2]), [color]
    ellipseUsed to create a circleellipse ([x], [y]), [radius], [color]
    functUsed to create a functionfunct [functname] {
    Block of statement/s
    }
    voidUsed to create a empty function(subroutine)void [voidname] {
    Block of statement/s
    }
    createVectorUsed to create a vectorcreateVector [vectorname]
    declareUsed to declare something or an arraydeclare [varname][arraynum] AS [type]