language-pseu package
A very simple pseudocode language definition and syntax highlighter.
By default, reads *.pseudo
and *.pseudocode
files.
Syntax
Control statements
IF, ENDIF, ELSE, ELSEIF, THEN, SELECT, CASE, ENDCASE, BREAK, RETURN, WHILE, ENDWHILE, DOWHILE, ENDDO, REPEAT, UNTIL, TO, END
Function-like
FUNCTION, ENDFUNCTION, SUB, ENDSUB, ROUTINE, ENDROUTINE, PROGRAM, ENDPROGRAM
Logical operators
AND, OR, NOT
Boolean operators
TRUE, FALSE
Functions
PRINT, READ, GET, FROM, WRITE, PUT
Strings
Either " or ',
I.e.
name = 'isdampe'
name = "isdampe"
Comments
//
I.e, //this is a comment