You are viewing a single comment's thread. Return to all comments →
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
DECLARE @counter INT = 1;
WHILE @counter <=20
BEGIN
PRINT REPLICATE('* ', @counter);
SET @counter = @counter + 1
END