https://github.com/logicify/sel-dotnet
.NET implementation of the SEL(Simple Expression Language)
https://github.com/logicify/sel-dotnet
Last synced: 3 months ago
JSON representation
.NET implementation of the SEL(Simple Expression Language)
- Host: GitHub
- URL: https://github.com/logicify/sel-dotnet
- Owner: Logicify
- License: mit
- Created: 2015-02-13T15:38:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-04T15:44:07.000Z (over 10 years ago)
- Last Synced: 2024-08-30T20:38:00.780Z (10 months ago)
- Language: C#
- Size: 184 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sel-dotnet
.NET implementation of the [SEL(Simple Expression Language)](https://github.com/Logicify/sel)# Syntax Examples
Simple interpolation
```
Hello, $username.
```Invoke function
```
Uppercased value of test is $upper(test)
```Invoke function with variable argument
```
Uppercased username is $upper($username)
```Logical operations (conjunction)
```
$allOf(true, false, false)
```More complex logical operations
```
$anyOf($not($myVar), $myVar)
```# Usage
To be added soon.
Credits
-------
Dmitry Berezovsky, Logicify ()