Skip to content

geektcp/y

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
}