Hierba tras el cristal — 7 of 16

Johan Paz

Release 2

Section 1 - Facilidad para mostrar partes no interactivas

[--------------------------------------------------

La idea es bien simple -ya que hay muchas cosas

que no sé hacer-, cada entrada de una tabla/lista

simple, se muestra y tras ella se espera la

pulsación de una tecla

--------------------------------------------------]

To relatar fragmento en (tabla - a table-name), limpiando pantalla or limpiando pantalla tras cada frase:

if limpiando pantalla

begin;

relatar fragmento en tabla;

wait for any key;

[simple fade out the sound of inicio to 40% over 1000 ms;]

clear the screen;

otherwise if limpiando pantalla tras cada frase;

let N be the number of rows in tabla;

repeat through tabla begin;

decrease N by 1;

say "[frase entry]";

wait for any key;

clear the screen;

end repeat;

otherwise;

let N be the number of rows in tabla;

repeat through tabla begin;

decrease N by 1;

say "[frase entry]";

say paragraph break;

if N is not 0, wait for any key;

end repeat;

end if.