Skip to content

coco, rust-written dynamically typed programming language

License

Notifications You must be signed in to change notification settings

somucheffort/coco

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

coco

coco is a dynamically typed language with simple syntax

example

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)

running

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

contributing

all contributions are welcome, if they are aimed on making language better in any kind

license

MIT