palate 0.3.8

File type detection combining tft and hyperpolyglot
Documentation
class foo {
  notify {
    "foo": ;
  }
}

class bar {
  notify {
    "bar": ;
  }
}


node default {
  stage {
    "one": ;
    "two": ;
  }

  class {
    "foo": stage => "one";
    "bar": stage => "two";
  }

  Stage["one"] -> Stage["two"]
}