Skip to content

geektcp/y

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Y language

a new script language which called Y language or WHY language

website

office website

example

#!/bin/why

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