const for core

Create a parse-time constant.

Signature

> const {flags} (const_name) (initial_value)

Parameters

  • const_name: constant name
  • initial_value: equals sign followed by constant value

Input/output types:

input output
nothing nothing

Examples

Create a new parse-time constant.

> const x = 10

Create a composite constant value

> const x = { a: 10, b: 20 }

Notes

This command is a parser keyword. For details, check: https://irsh.vercel.app/book/thinking_in_rsh.html