PawScript is a statically typed programming language made because why not.
- Compiled
- Interpreted
- Turing-complete
- Self-hosted
- Statically typed
- Type checking
While the language is statically typed, types are only needed if the variable doesn't have a value assigned as they can be infered
int initializedVariale = 45;
int uninitializedVariable;
int numberOne = 34
int sum = numberOne + 35
int difference = sum - 35 - 8 + 23