Post History
Embed ESCR, about 32 characters depending on how you count loop append s "*" show s endloop The indentation is not required, but shown for clarity. Declaring the variable S is also not ...
Answer
#2: Post edited
<h2>Embed <a href="http://www.embedinc.com/pic/escr/index.htm">ESCR</a>, about 32 character depending on how you count</h2>- <pre>
- loop
- append s "*"
- show s
- endloop</pre>
- The indentation is not required, but shown for clarity. Declaring the variable S is also not included, since similar stuff doesn't seem to be included in other examples.
- S is a string variable. In ESCR, storage for a string can grow dynamically at run time as needed. The string initialially starts empty, with one "*" appended to it each iteration.
- <h2>Embed <a href="http://www.embedinc.com/pic/escr/index.htm">ESCR</a>, about 32 characters depending on how you count</h2>
- <pre>
- loop
- append s "*"
- show s
- endloop</pre>
- The indentation is not required, but shown for clarity. Declaring the variable S is also not included, since similar stuff doesn't seem to be included in other examples.
- S is a string variable. In ESCR, storage for a string can grow dynamically at run time as needed. The string initialially starts empty, with one "*" appended to it each iteration.
#1: Initial revision
<h2>Embed <a href="http://www.embedinc.com/pic/escr/index.htm">ESCR</a>, about 32 character depending on how you count</h2> <pre> loop append s "*" show s endloop</pre> The indentation is not required, but shown for clarity. Declaring the variable S is also not included, since similar stuff doesn't seem to be included in other examples. S is a string variable. In ESCR, storage for a string can grow dynamically at run time as needed. The string initialially starts empty, with one "*" appended to it each iteration.