This will be an article about my C-like language, Clover. For now head over to the GitHub repository to check it out.
Here’s a little sample of some clover code:
//
// simple.Clover
// Clover
//
// Created by Chris Marrin on 5/25/24.
//
struct Simple
{
function int16_t main()
{
int8_t a = 5;
a *= 1;
core.printf("a=%d\n", a);
return 0;
}
};
Leave a Reply