Coding Seb
                                            Coding Seb
                                        
                                    Yes I already thought about this too. In place of an array I would add a way to use the string as a Regex with some option like `OptionScriptBlocksKeywordsHeadStatementsAsRegex =...
Some small breaking changes are linked to this issue. So I think the next version of EE that will come with all of these scripts customization stuff will be a...
Here is an Idea to allow block keywords customization (as asked in [OptionKeywordForInstanceCreation => OptionNewKeywordAliases commit](https://github.com/codingseb/ExpressionEvaluator/commit/71f3de20c1283b1b2578ec16896f4ea77c79f37b)) ```c# IDictionary blockKeywords { get; set; } = new Dictionary() { {"while", (keywordAttributes, subScript,...
And for more python like `for`loops : ```c# blockKeywords["for"] = blockKeywords["foreach"]; blockKeywords.Remove("foreach"); ```
Hello @Xjph, sorry for my late response. Need to investigate a bit. But for now you can easily manage it by returning the`result` variable each times after if blocks: ```c#...
Hello @ko-vasilev. Thanks for this issue. For now named arguments are not supported. I think it could be nice to have. I am on vacation for the next 2 weeks....
Hello @PingMyCat. Thanks to reporting this issue and sorry for my late response. I will look what I can do for this but it' looks tricky as it is link...
It's not directly possible with the standard syntax of a method for now. But it's possible to declare some multiline lambda like function. I know it's not well documented. But...
Also take note that variables declared in a lambda are scoped (only available) in the lambda block. But for now variables declared in other types of blocks are not scoped...
> it would be nice to have another setting to toggle this. Yes good idea. I will add an option for this. > If possible it would be fine to...