Skip to content

Commit 2580c6e

Browse files
committed
Edits to sslc document
Updated version number.
1 parent 4962d3c commit 2580c6e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/sslc_readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ Syntax which requires sfall for compiled scripts to be interpreted is marked by
322322
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).
323323
324324
__NOTE:__ Just like `for` loop, `continue` statement will respect increments of a hidden counter variable, so you can safely use it inside `foreach`.
325-
326-
- `#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.
325+
326+
- `#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.
327327
328328
---
329329
@@ -351,7 +351,7 @@ There are several changes in this version of sslc which may result in problems f
351351
### Changelog
352352
353353
**sfall 4.4.10:**
354-
- added #pragma sce
354+
- added `#pragma sce` directive
355355
356356
**sfall 4.4.7:**
357357
- fixed leftover stack data caused by the `break` statement

resource.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
#define VERSION_MAJOR 4
88
#define VERSION_MINOR 4
9-
#define VERSION_BUILD 7
9+
#define VERSION_BUILD 10
1010
#define VERSION_REV 0
1111

12-
#define VERSION_STRING "4.4.7"
12+
#define VERSION_STRING "4.4.10"
1313

1414
#ifdef BUILDING_DLL
1515
#define FILE_STRING "parser.dll"

0 commit comments

Comments
 (0)