Added the Y Programming Language

This commit is contained in:
Joshua Suggs
2008-10-03 21:09:27 +08:00
committed by Mike Donaghy
parent 7cbdb5b642
commit 1a5ee372c1

10
y/Y.y Normal file
View File

@@ -0,0 +1,10 @@
module helloworld
define(EOF,(-1))
import printf from "ylib.d"
main()
printf("Hello World\n")
end
end