Skip to main content

{ Curly Brace }

Laurence MorganAbout 1 min

{ Curly Brace }

Initiates or terminates a code block

Description

Curly braces are used to denote the start and end of a code block. Like with the single quotation marks ('), any code inside a curly brace is not parsed. Also unlike any other quotation tokens, the curly brace is included as part of the parsed string.

» out {example}
{example}

Also like the brace quote ((, )), the curly brace character is only recognized as a curly brace token if it is the start of a parameter.

Curly braces are also used for other fields besides code blocks. For example inlining JSON.

Detail

Multiline Blocks

Curly braces can work over multiple lines

» out {foo
» bar}
{foo
bar}

Code Golfing

Curly braces can be used to terminate the parsing of the command name and/or parameters too:

if{true}{out Yipee}

Nesting

Curly braces can be nested:

» out {{foo} bar}
{{foo} bar}

ANSI Constants

Some builtins (like out) also support infixing using the curly brace. eg

out "{GREEN}PASSED{RESET}"

This is a separate layer of parsing and happens at the parameter level for specific builtins which opt to support ANSI constants. See the ANSI Constant user guide (link below) for more information on supporting builtins and which constants are available.

See Also

  • ANSI Constants: Infixed constants that return ANSI escape sequences
  • Code Block Parsing: Overview of how code blocks are parsed
  • "Double Quote": Initiates or terminates a string (variables expanded)
  • %(Brace Quote): Initiates or terminates a string (variables expanded)
  • 'Single Quote': Initiates or terminates a string (variables not expanded)
  • (brace quote): Write a string to the STDOUT without new line (deprecated)
  • @Array Sigil: Expand values as an array
  • err: Print a line to the STDERR
  • out: Print a string to the STDOUT with a trailing new line character
  • set: Define a local variable and set it's value
  • string (stringing): string (primitive)
  • tout: Print a string to the STDOUT and set it's data-type
  • ~ Home Sigil: Home directory path variable

This document was generated from gen/parser/codeblock_doc.yamlopen in new window.

Last update:
Contributors: Laurence Morgan,Laurence Morgan,Olivier Refalo