silk is a programming language created in 2019.
| #1233on PLDB | 7Years Old |
git clone https://github.com/AjayMT/silkThe Silk Programming Language
// A comment
extern func printf(s *i8) void;
func main(argc i32, argv **i8) i32 {
printf("hello, world\n");
if argc > 1 {
val arg = @(argv + 1);
printf(arg);
}
return 0;
}| Feature | Supported | Example | Token |
|---|---|---|---|
| Print() Debugging | ✓ | printf | |
| Comments | ✓ | // A comment | |
| Line Comments | ✓ | // A comment | // |
| Semantic Indentation | X |