Skip to content

adamjedlicka/blu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blu

best language. undisputed

blu is small, fast and intuitive scripting language

import "system"

class Dog {
    fn __init(name) {
        @name = name
    }

    fn bark(): @name + " barks!"
}

var maxipes = Dog("Fík")

3.times(maxipes.bark).each(System.println)