# Number to string
Converts a numeric value to its string representation.
Number to string
V
T
# Inputs
| ID | Abbrev | Name | Type | Default | Description |
|---|---|---|---|---|---|
value | V | Value | NUMBER | 0 | Numeric value to convert to string. |
# Outputs
| ID | Abbrev | Name | Type | Default | Description |
|---|---|---|---|---|---|
text | T | Text | STRING | | The numeric value formatted as a string. |
# Source Code
View Volang source
output::set("text", str::fmt("{}", input::get("value")))
