```sh
text = write_properties [names]
```
Creates a properties string from the provided list of variable names (not values).
A list of variable names.
The properties text value.
```sh
a = set 1
b = set 2
a.b.c = set 3
text = write_properties a b a.b.c
```