discord test stars

About

Traceback utilities in the Mys programming language.

Project: https://github.com/mys-lang/package-traceback

API

class TracebackEntry:
    A traceback entry with file path, line number, function and source
    code.

    path: string
    line_number: i64
    function: string
    source_code: string
class Traceback:
    A traceback.

    stack: [TracebackEntry]
func traceback() -> Traceback:
    Returns the current traceback.