```sh
var = starts_with all partial
```
Returns true if the first argument starts with the value of the second argument.
* *
**true** if starts with.
```sh
result = starts_with abcd abc
value = set "some text"
result = starts_with ${value} "some te"
result = starts_with abcd bcd
```