https://github.com/navid-m/scar
Scar programming language
https://github.com/navid-m/scar
concurrency language parallelism programming-language
Last synced: 5 months ago
JSON representation
Scar programming language
- Host: GitHub
- URL: https://github.com/navid-m/scar
- Owner: navid-m
- License: gpl-3.0
- Created: 2025-07-29T23:17:20.000Z (5 months ago)
- Default Branch: dev
- Last Pushed: 2025-08-08T20:21:25.000Z (5 months ago)
- Last Synced: 2025-08-08T20:38:17.980Z (5 months ago)
- Topics: concurrency, language, parallelism, programming-language
- Language: Go
- Homepage: https://scarlang.pages.dev
- Size: 8.14 MB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Scar
In-development general purpose systems programming language with abstracted concurrency constructs builtin.
No macros or convoluted compile-time metaprogramming.
Optional GC. Standard library will work with or without GC.
Prioritizes:
- immutability
- minimalism
- readability
- easy parallelism
#### Example
```scar
pub fn do_thing() -> void:
parallel for i = 1 to 5:
print "i = %d" | i
sleep 0.1
print "Parallel for loop completed."
do_thing()
```
All values are constant by default.
---
(Under construction)