mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
Edited readme.
This commit is contained in:
19
README.md
19
README.md
@@ -196,6 +196,25 @@ Keywords should not be used as identifiers. Here is a full list of all keywords
|
||||
| exitwith |
|
||||
| waituntil |
|
||||
|
||||
## What's missing?
|
||||
|
||||
The following features are not implemented yet, but will be in 1.1.0 or a future version:
|
||||
|
||||
* inlining code
|
||||
* preprocessor and constants
|
||||
* arrays within expressions (like someArray-[someEntity])
|
||||
|
||||
There is a simple workaround for arrays within expressions:
|
||||
|
||||
```
|
||||
// want: ... forEach allCurators-[myCurator];
|
||||
|
||||
var myCuratorArray = [myCurator]; // or a more complex expression within array
|
||||
foreach allCurators-myCuratorArray {
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
## Contribute
|
||||
|
||||
To contribute please create pull requests or explain your ideas in the issue section on GitHub. Report any bugs or incompatible ASL <-> SQF syntax you can find.
|
||||
|
||||
Reference in New Issue
Block a user