Bike.Hosting.Engine.Run C# (CSharp) Method

Run() public static method

public static Run ( string homePath, string libPaths, string filePath ) : ScopeFrame
homePath string
libPaths string
filePath string
return ScopeFrame
        public static ScopeFrame Run(string homePath, string libPaths, string filePath)
        {
            var context = InterpretationContext.StartInterpretation(homePath, libPaths, filePath);
            return context.GlobalFrame;
        }
Engine