algoGMC READMESyntax reader for algorithm language. the extension of the file must be *.algo Code example 1:
FUNCTION Locate_film(name_film : INTEGER) : INTEGER VAR i : INTEGER; not_found : BOOLEAN; BEGIN i := 0; not_found := TRUE; REPEAT IF names[i] = name_film THAN not_found := TRUE; ELSE i := i + 1; END_IF UNTIL not_found AND i < NB_FILM
END_FUNCTION |