https://github.com/vepo/smart-calculator
https://github.com/vepo/smart-calculator
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vepo/smart-calculator
- Owner: vepo
- Created: 2024-08-21T20:40:59.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T21:04:58.000Z (10 months ago)
- Last Synced: 2025-01-16T06:55:45.226Z (6 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)
}
```