Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/behailus/DoS-IL
Domain Specific IoT Language Interpreter
https://github.com/behailus/DoS-IL
Last synced: 3 months ago
JSON representation
Domain Specific IoT Language Interpreter
- Host: GitHub
- URL: https://github.com/behailus/DoS-IL
- Owner: behailus
- Created: 2017-01-17T12:57:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T19:30:11.000Z (over 4 years ago)
- Last Synced: 2024-04-24T16:14:40.491Z (6 months ago)
- Language: C
- Homepage:
- Size: 69.3 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - DoS-IL
README
# DoS-IL Overview
Operators
Comparison:
- = (equality)
- < (less than)
- <= (less than or equal)
- > (greater than)
- >= (greater or equal)
- | (logical or)
- & (logical and)
Separators:
- ; end of statement
- , List parameters and items in format
- _ variable declaration
- := assignment operator
- ( begin parameter
- ) end parameter
- { begin block
- } end of block
- -> resolve items (used as memeber access operator in C)