1

为什么我不能使用forvalues语法反向循环?我可以使用foreach of numlist语法反向循环,但我很困惑为什么下面的示例在等效示例工作forvalues时静默失败。foreach of numlist

* both fail silently
forvalues j = 5/4 {
    display `j'
}

forvalues j = 5(1)4 {
    display `j'
}

* both work
foreach j of numlist 5/4 {
    display `j'
}

foreach j of numlist 5(1)4 {
    display `j'
}

谢谢!

4

1 回答 1

3

玫瑰是红色的,

紫罗兰是蓝色的。

试试5(-1)4

希望对你有效。

需要一些额外的字符来发布,因此是诗歌。

于 2013-02-14T18:19:43.390 回答