coco is a dynamically typed language with simple syntax
see example folder for more advanced examples
// assume we have one coco
let coco = 1
// we would add 1 coco until we have 67
while (coco < 67) {
coco += 1
}
log('total cocos:', coco)
coco supports repl, but it is not capable of some features.
it is recommended to run files, rather than in repl itself
$ cargo run filename.co
all contributions are welcome, if they are aimed on making language better in any kind