https://github.com/t-88/skot
yet another programming lang
https://github.com/t-88/skot
Last synced: 2 months ago
JSON representation
yet another programming lang
- Host: GitHub
- URL: https://github.com/t-88/skot
- Owner: t-88
- License: mit
- Created: 2023-06-15T10:01:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-15T11:30:53.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T23:44:55.473Z (4 months ago)
- Language: C
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Skot
personal project programming lang
there is ifs , whiles, fors and memory looks to me like skot is turing complete.## Memory
- its not finished, no memory management at all :)
- it dosnt do anything about memory once it takes it there is no coming back its not a bug its a feature.
## How to usewrite ur code in main.skt and
```
./run.sh
```
example of code:
```
let a = 1;
for(0..3) {
if(a == 1) {
output(a);
} else if (a == 2) {
output(a);
}
else {
output(a);
}
a = a + 1;
}
while(1 == 1) {
output("turring complete " + ":O");
}
```