spl

systems programming language
git clone http://frotz.net/git/spl.git
Log | Files | Refs | README | LICENSE

hello.spl (61B)


      1 
      2 fn start() i32 {
      3 	writes(1, "Hello, World\n");
      4 	return 0;
      5 }