emeraldthunder1 @emeraldthunder1

Imagine python, but statically typed and with curly braces.

def str greet(str name) {
    return f"Hello, {name}"
}
Jan 22, 2023, 8:00 AM
4
View all Parent

comments

Highlighted comment
greet :: str -> str
def greet(name) {
    return f"Hello, {name}!"
}

By the way your syntax is good, it’s just that the arrow reminded me of Haskell