Console Output


    L = long register, D = double register
    V = variable, S = string variable


    print_l     L;
    print_d     D;
    print_s     S;

    print_n     L;         newlines
    print_sp    L;         spaces
    print_c;               clear console
    print_a     L;         prints the char from the ASCII-code of "L"
                           example: "65" -> "A"

    print_v     V;         variable name
	
Textstyles:
    print_b;               bold
    print_i;               italic
    print_u;               underline
    print_r;               reset to normal style
	
Cursor:
    locate     Ly, Lx;     locates cursor at line "Ly" and row "Lx"

    curson;                cursor on
    cursoff;               cursor off

    cursleft   L;          cursor steps to left
    cursright  L;
    cursup     L;
    cursdown   L;
    
Prev: Console Input | Next: Loops