Help Center
Help CenterFreeBASIC

Option NoKeywordkeyword

"Undefines" a reserved keyword

Compiler Switcheskeyworddocumented

Syntax

Option NoKeyword keyword

Parameters

NameDescription
keywordthe keyword to undefine

Description


Option NoKeyword is a statement that undefines a FreeBASIC reserved keyword, meaning it can be used as an identifier for a variable, object, procedure or any other symbol. The keyword is undefined for the rest of the module in which Option NoKeyword is used.

Remarks

Dialect Differences


Differences from QB


  • New to FreeBASIC

See also


Example


'' Compile with the "-lang fblite" compiler switch



#lang "fblite"



Option NoKeyword Int        ' remove the keyword 'int' from the internal

                            ' symbol table



Dim Int As Integer          ' declare a variable with the name 'int'


Reference

  • Documented in KeyPgOptionnokeyword.html