adding new stuff

This commit is contained in:
ViktorBarzin 2017-07-09 00:22:01 +03:00
parent f84d7183aa
commit 9ef8a96f9a
1580 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,37 @@
XPTemplate priority=like
XPTvar $TRUE 1
XPTvar $FALSE 0
XPTvar $NULL NULL
XPTvar $BRloop ' '
XPTvar $SParg ' '
XPTvar $SPcmd ' '
XPTvar $SPop ' '
XPT while wrap " while ( .. )
while`$SPcmd^(`$SParg^`condition^`$SParg^)`$BRloop^{
`cursor^
}
XPT do wrap " do { .. } while ( .. )
do`$BRloop^{
`cursor^
}`$BRloop^while`$SPcmd^(`$SParg^`condition^`$SParg^);
XPT while0 alias=do " do { .. } while ( $FALSE )
XSET condition=Embed( $FALSE )
XPT while1 alias=while " while ( $TRUE ) { .. }
XSET condition=Embed( $TRUE )
XPT whilenn alias=while " while ( $NULL != .. ) { .. }
XSET condition=Embed( $NULL . $SPop . '!=' . $SPop . '`x^' )