HipDDFSample
enum HipDDFSample = 
q{
    /**
    *   HipDDF sample of how it works. This file is being used as a test too for each supported thing.
    */
    int[] testArray_Multi = 
    [
        -1,
        -2,
        -3
    ];
    int a = 500;
    int b = a;
    string multiLineStringTest = "
    Lorem ipsum this is really boring.
    " //Look! Optional semicolon (maybe only for now)
    int lineCheckerTest = __LINE__;
    int[] testArray_Single = [1, 4, 30, 90, 99];
    string abilityType = "Test helper";
    int[string] testAA = [
        "ABC" : 500,
        "Hundred" : 100
    ];
    int[4] testArray_Bounded = [
        10,20,30,40
    ];
    int[10] testArray_Value = 5;
};
  
		hipddf 
		modulesmanifest constants