Vice Underdogs

Scripting => Scripting Support => Topic started by: MaDKilleR on July 02, 2012, 06:04:17 pm

Title: I need something :)
Post by: MaDKilleR on July 02, 2012, 06:04:17 pm
I needed a list of all if, else etc words which are used in squirrel. Like switch, for, foreach, privmessage etc. So, can anyone help me with this thing?

Any help will be deeply appreciated.  ;D
Title: Re: I need something :)
Post by: Zeke on July 02, 2012, 06:21:40 pm
Keywords
The following words are reserved words by the language and cannot be used as identifiers:

base   break, case, catch, class, clone,
continue, const, default, delete, else, enum,
extends, for, foreach, function, if, in,
local, null, resume, return, switch, this,
throw, try, typeof, while,   yield, constructor,
instanceof, true, ,false ,static       

Source: http://www.squirrel-lang.org/doc/squirrel3.html#d0e61
Title: Re: I need something :)
Post by: MaDKilleR on July 02, 2012, 06:50:32 pm
Keywords
The following words are reserved words by the language and cannot be used as identifiers:

base   break, case, catch, class, clone,
continue, const, default, delete, else, enum,
extends, for, foreach, function, if, in,
local, null, resume, return, switch, this,
throw, try, typeof, while,   yield, constructor,
instanceof, true, ,false ,static       

Source: http://www.squirrel-lang.org/doc/squirrel3.html#d0e61
Thankx, i found something else to  :) :)