L = long Register, D = double Register
V = Variable, S = string Variable
print_l L;
print_d D;
print_s S;
print_n L; neue Zeilen
print_sp L; Leerzeichen
print_c; Konsole löschen
print_a L; Gibt das Zeichen mit dem ASCII-Code von "L" aus.
Beispiel: "65" -> "A"
print_v V; Variablenname
Textstile:
print_b; Fett
print_i; Kursiv
print_u; Unterstrichen
print_r; Rücksetzen auf Normal
Cursor:
locate Ly, Lx; Setzt den Cursor nach Zeile "Ly" und Spalte "Lx"
curson; Cursor ein
cursoff; Cursor aus
cursleft L; Cursor Schritte nach links
cursright L;
cursup L;
cursdown L;
Prev: Konsole Eingabe | Next: Schleifen
|