8 lines
115 B
Text
8 lines
115 B
Text
|
|
repeat with i = 1 to 5
|
||
|
|
str = ""
|
||
|
|
repeat with j = 1 to i
|
||
|
|
put "*" after str
|
||
|
|
end repeat
|
||
|
|
put str
|
||
|
|
end repeat
|