Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 282 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 282 Bytes

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)