BadScript 2
Loading...
Searching...
No Matches
BadRuntimeExecutionResult.cs
Go to the documentation of this file.
2
3namespace BadScript2;
4
8public readonly struct BadRuntimeExecutionResult
9{
13 public readonly BadObject Result;
14
18 public readonly BadObject? Exports;
19
26 {
27 Result = result;
28 Exports = exports;
29 }
30}
The Base Class for all BadScript Objects.
Definition BadObject.cs:14
Contains the Runtime Objects.
Definition BadArray.cs:10
The main namespace for the BadScript2 Language.
Definition BadConsole.cs:6
Gets returned by the bad runtime when an execution is finished.
readonly? BadObject Exports
The Exported Object.
readonly BadObject Result
The Result of the Execution.
BadRuntimeExecutionResult(BadObject result, BadObject? exports)
Creates a new BadRuntimeExecutionResult.