Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vepo/smart-calculator
https://github.com/vepo/smart-calculator
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/vepo/smart-calculator
- Owner: vepo
- Created: 2024-08-21T20:40:59.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T21:04:58.000Z (4 months ago)
- Last Synced: 2024-09-15T23:24:15.359Z (4 months ago)
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Calculator
Criar um pequeno framework contendo formas avançadas de configuração!!!
```
> 2 + 5
= 7
```Adicionar hookpoints!!!!
```javascript
function onExpression(value1, operator, value2) {
return null;
}function onExpression(value1, operator, value2) {
print("EXPR:" + value1 + operator + value2);
return eval(value1 + operator + value2)
}
```