time-to-botec/squiggle/node_modules/@stdlib/symbol/ctor/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

28 lines
562 B
Plaintext

{{alias}}( [description] )
Returns a symbol.
Unlike conventional constructors, this function does **not** support the
`new` keyword.
This function is only supported in environments which support symbols.
Parameters
----------
description: string (optional)
Symbol description which can be used for debugging but not to access the
symbol itself.
Returns
-------
out: symbol
Symbol.
Examples
--------
> var s = ( {{alias}} ) ? {{alias}}( 'beep' ) : null
See Also
--------