Tree("Root") {
    Composite (Sequence) {
        TestScript.StringFunction("test123")
        TestScript.StringFunction ( "test123" )

        TestScript.StringFunction (" test123 \n ")

        TestScript.FloatFunction(1.3)
        TestScript.FloatFunction ( 1.3 )

        TestScript.IntFunction(2)
        TestScript.IntFunction ( 2 )

        TestScript.BoolFunction(True)
        TestScript.BoolFunction ( True )

        TestScript.PublicFunction()
        TestScript.PublicFunction ( )

        TestScript.EnumFunction(SampleEnum.value1)

        TestScript.PrivateFunction ()

        RunTree("TestTree")
    }
}

Tree ("TestTree") {
    Composite (Sequence) {
        TestScript.EnumFunction(SampleEnum.value1)
        RunTree ("TestTree1")
    }
}

Tree ("TestTree1") {
    Composite (Sequence) {
        TestScript.StringFunction("test123")
        TestScript.StringFunction ( "test123" )
        RunTree("TestTree2")
    }
}

Tree ("TestTree2") {
    Composite (Sequence) {
        TestScript.StringFunction("test123")
        TestScript.StringFunction ( "test123" )
    }
}