Difference between revisions of "SET STRICT"

From Lianjapedia
Jump to: navigation, search
Line 21: Line 21:
 
</code>
 
</code>
  
==Products==
 
Lianja, Lianja Server
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]

Revision as of 05:21, 16 January 2017

Purpose

Determines whether variables must be pre-declared

Syntax

SET STRICT ON | OFF | (<expL>)

See Also

DTOC(), DTOS(), ECHO, ETOS(), LTOS(), SET STRCONVERT, STR()

Description

With SET STRICT ON, all variables must be pre-declared. By default, SET STRICT is OFF.

Example

set strict off
m_var = date()
 
set strict on
private m_var
m_var = date()