Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 266 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 266 Bytes

Y language

a new script language which called Y language or WHY language

website

office website

example

#!/bin/why

msg = "hello world!"
fun helloworld(msg)
{
    print(msg)
    return msg
}