RosettaCodeData/Task/Loops-For/Vedit-macro-language/loops-for.vedit
2023-07-01 13:44:08 -04:00

6 lines
113 B
Text

for (#1 = 1; #1 <= 5; #1++) {
for (#2 = 1; #2 <= #1; #2++) {
Type_Char('*')
}
Type_Newline
}