fixed issue in documentation of while loop
This commit is contained in:
parent
7e3639d48b
commit
aae28f68b6
2 changed files with 8 additions and 12 deletions
|
|
@ -77,9 +77,9 @@ func ShsIf(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
|||
/* continually eval n forms while element #1 evals to T
|
||||
* has rather progn like behavior in that it returns the result of the last form to be evaluated
|
||||
*
|
||||
* Example:
|
||||
* (export cond F)
|
||||
* (while cond (export cond T) (print "will only be printed once") (+ 1 2))
|
||||
* Example:
|
||||
* (export cond T)
|
||||
* (while cond (export cond F) (print "will only be printed once") (+ 1 2))
|
||||
* loop will iter one time, print "will only be printed once" and return 3
|
||||
*/
|
||||
func ShsWhile(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue