RosettaCodeData/Task/Loops-For/Vedit-macro-language/loops-for.vedit

7 lines
113 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
for (#1 = 1; #1 <= 5; #1++) {
for (#2 = 1; #2 <= #1; #2++) {
Type_Char('*')
}
Type_Newline
}