String Manipulation

Decision includes some functions that allows you to manipulate strings.

Length

You can get the number of characters in a string:

Start~#1
Length("Hello, world!")~#2
Print(#1, #2)
$ decision length.dc

13