Edits to sslc document

Updated version number.
This commit is contained in:
NovaRain
2026-03-08 20:36:19 +08:00
parent 4962d3cd68
commit 2580c6e4db
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -322,8 +322,8 @@ Syntax which requires sfall for compiled scripts to be interpreted is marked by
If you want to add additional condition for continuing the loop, use syntax: `foreach (<symbol> in <expression> while <expression>)`. In this case loop will iterate over elements of an array until last element or until "while" expression is true (whatever comes first).
__NOTE:__ Just like `for` loop, `continue` statement will respect increments of a hidden counter variable, so you can safely use it inside `foreach`.
- `#pragma sce` directive. If present anywhere in the compiled script, will enable short-circuit evaluation of logical `and` and `or` operators, even if `-s` command line argument is not used.
- `#pragma sce` directive. If present anywhere in the script source, it will enable short-circuit evaluation for all the logical `AND` and `OR` operators, even if the command line option `-s` is not used.
---
@@ -351,7 +351,7 @@ There are several changes in this version of sslc which may result in problems f
### Changelog
**sfall 4.4.10:**
- added #pragma sce
- added `#pragma sce` directive
**sfall 4.4.7:**
- fixed leftover stack data caused by the `break` statement
+2 -2
View File
@@ -6,10 +6,10 @@
#define VERSION_MAJOR 4
#define VERSION_MINOR 4
#define VERSION_BUILD 7
#define VERSION_BUILD 10
#define VERSION_REV 0
#define VERSION_STRING "4.4.7"
#define VERSION_STRING "4.4.10"
#ifdef BUILDING_DLL
#define FILE_STRING "parser.dll"