File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ public CritVisitor(string version)
2727 Variables [ "Sum" ] = new Func < object ? [ ] , object ? > ( SumArr ) ;
2828 Variables [ "Add" ] = new Func < object ? [ ] , object ? > ( AddArr ) ;
2929 Variables [ "Remove" ] = new Func < object ? [ ] , object ? > ( RemoveArr ) ;
30+ Variables [ "Split" ] = new Func < object ? [ ] , object ? > ( Split ) ;
31+ Variables [ "Len" ] = new Func < object ? [ ] , object ? > ( Len ) ;
3032
3133 //OS Functions
3234 Variables [ "ReadText" ] = new Func < object ? [ ] , object ? > ( ReadText ) ;
@@ -36,8 +38,6 @@ public CritVisitor(string version)
3638 Variables [ "Convert" ] = new Func < object ? [ ] , object ? > ( ConvertTo ) ;
3739 Variables [ "Delay" ] = new Func < object ? [ ] , object ? > ( Delay ) ;
3840 Variables [ "CritVersion" ] = _version ;
39- Variables [ "Split" ] = new Func < object ? [ ] , object ? > ( Split ) ;
40- Variables [ "Len" ] = new Func < object ? [ ] , object ? > ( Len ) ;
4141 Variables [ "Type" ] = new Func < object ? [ ] , object ? > ( GetTypeOf ) ;
4242
4343 }
You can’t perform that action at this time.
0 commit comments