开源编程语言 yotlang.com
>>> ./configure
>>> cd src
>>> makemodule hello_world
import Text;
func main()
|
const str = "hello world";
|
Text.WriteString(str);
Text.WriteLn
end;>>> ./yot -o hello_world.yot
>>> ./hello_world
Hello World正在开发中。