mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
9 lines
221 B
Text
9 lines
221 B
Text
istring is an interpolated string class, which means you can substitute
|
|
variables into a string, like this:
|
|
|
|
>>> j = 3
|
|
>>> s = istring("j is $j")
|
|
>>> s
|
|
'j is 3'
|
|
|
|
WWW: http://www.neosynapse.net/istring.htm
|