Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 271 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 271 Bytes

Y language

a new script language which called Y language or WHY language

website

office website

example

#!/bin/why

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