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

7 lines
113 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (#1 = 1; #1 <= 5; #1++) {
for (#2 = 1; #2 <= #1; #2++) {
Type_Char('*')
}
Type_Newline
}