Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

34 total results found

Versioning

versioning

Topaz Language Specification

TLS

Topaz Core Library

TCL

Packages

packages

Tokens

tokens

Statements

statements

Expressions

expressions

Builtins

builtins

Exceptions

exceptions

Basic

Statements

basic

Conditional

Statements

conditional

Loops

Statements

loops

Functions

Statements

functions

Types

Statements

types

Extensions

Statements

extensions

Built-in errors

Exceptions

builtin-errors

User defined exceptions

Exceptions

Constants

Tokens

Reserved words

Tokens

Variables

Statements Basic

Syntax var_stmt      ::= "var" (attributes identifier ((":" type_expr [var_stmt_asgn]) | (var_stmt_asgn)) [","])+var_stmt_asgn ::= ":=" expression Description Memory locations with specific types are explicitly named as variables. When values are assigned t...

Syntax errors

Exceptions Built-in errors

Syntax errors are faults in the source code, such as misspellings and punctuation, wrong labeling, and so forth, that result in the interpreter producing an error message. We can find these expressions in Topaz as explained below: Code Message Additio...

Runtime errors

Exceptions Built-in errors

Program errors that arise during program execution after successful interpretation are known as runtime errors. These mistakes are listed in the following manner: Code Message Additional details TR000 Unknown. Unknown and unexpected error. ...

Warnings

Exceptions Built-in errors

Warnings are unique exceptions in that they only send information to the stderr stream in order to obtain more details about a specific code segment. Below is a description of them: Code Message Additional details TW000 Unknown. Unknown and...

Topaz source code tokens

Tokens

The fundamental lexical building blocks of source code are called tokens. They are the words of the language, formed by combining characters in accordance with the programming language's rules. Tokens fall into five categories: ConstantsActual values in the...

Integer constants

Tokens Constants

Float constants

Tokens Constants

Character constants

Tokens Constants

Simple string constants

Tokens Constants

Enhanced string constants

Tokens Constants

Boolean constants

Tokens Constants

Comments

Tokens

Keywords

Tokens Reserved words

Hint directives

Tokens Reserved words

Identifiers

Tokens