Vortex Docs
  • Introduction
  • Getting Started
  • Language Reference
    • Core Functionality
    • Built-in Functions
    • Hooks
    • C Interoperability
    • Coroutines
    • Decorators
    • Type Hinting
    • Error Handling
  • Examples
    • Data Structures
    • Hooks
    • Fetching Data
    • Sockets
    • Event Bus
  • Standard Modules
    • Functional
    • Functools
    • Future
    • I/O
    • JSON
    • Logging
    • Math
    • OS
    • Random
    • Requests
    • SDL
    • SQLite
    • String
    • Sys
    • Time
    • Crypto
    • Websockets
  • Development Roadmap
Powered by GitBook
On this page
  1. Standard Modules

Sys

The 'sys' module provides system information

Function Signatures

// 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
PreviousStringNextTime

Last updated 1 year ago