# Sys

### Function Signatures

{% code overflow="wrap" %}

```go
// Retrieves the stack information.
const stack = () => List

// Retrieves the global variables.
const globals = () => Object

// Retrieves the frame information.
const frame = () => {
    name: String,
    level: Number
}

// Executes a system command.
const system = (command: String) => None
```

{% endcode %}
