waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

hello.vala (173B)


      1 
      2 namespace wth {
      3 public class Hello : Object {
      4         public Hello() {
      5         }
      6         public void say_it() {
      7                 stdout.printf("Hello world");
      8         }
      9 }
     10 }