ENGLISH
Hi everyone!
Starting from the next version (and already available in beta) there is a new command: PRINT@grid. This is a command that allows you to place output at a specified place on the screen. It similar to LOCATE, with the main difference that uses just one number. For this purpose, the screen is divided into a SCREEN COLUMNS x SCREEN ROWS. I.e., if you have a screen of 40 columns for 25 rows, it will give you 1000 positions. The form of the PRINT @ command is
Code: Select all
PRINT @ position[, expression]
lf the screen has, i.e., 32 columns, then the statement
Code: Select all
PRINT @ 32 * (line− 1), a
Code: Select all
LOCATE 0, line
Ciao a tutti!
A partire dalla prossima versione (e già disponibile in beta) c'è un nuovo comando: PRINT@grid. Questo è un comando che consente di posizionare l'output in un punto specifico dello schermo. È simile a LOCATE, con la differenza principale che utilizza un solo numero. A questo scopo lo schermo viene suddiviso in SCREEN COLUMNS x SCREEN ROWS. Cioè, se si ha uno schermo di 40 colonne per 25 righe, questo darà luogo a 1000 posizioni. La forma del comando PRINT@ è
Code: Select all
PRINT @ posizione[, espressione]
Se lo schermo ha, cioè, 32 colonne, allora l'istruzione
Code: Select all
PRINT @ 32 * (riga−1), a
Code: Select all
LOCATE 0, riga
Salut tout le monde !
A partir de la prochaine version (et déjà disponible en version bêta) il y a une nouvelle commande : PRINT@grid. Il s'agit d'une commande qui vous permet de placer la sortie à un endroit spécifié sur l'écran. Il est similaire à LOCATE, avec la principale différence qui utilise un seul numéro. À cette fin, l'écran est divisé en SCREEN COLUMNS x SCREEN ROWS. Autrement dit, si vous avez un écran de 40 colonnes pour 25 lignes, cela vous donnera 1000 positions. La forme de la commande PRINT @ est
Code: Select all
PRINT @ position[, expression]
Si l'écran comporte, c'est-à-dire 32 colonnes, alors l'instruction
Code: Select all
PRINT @ 32 * (ligne− 1), a
Code: Select all
LOCATE 0, ligne