Microsoft Small Basic

Program Listing: MPP890
' Sample Code for For Statement

GraphicsWindow.Title = "Pinstripe"
GraphicsWindow.BackgroundColor = "Black"
GraphicsWindow.PenColor = "White"
GraphicsWindow.PenWidth = 1
For x = 0 To 624 Step 50
For y = 0 To 441 Step 6
GraphicsWindow.DrawLine(x, y, x, y + 4)
EndFor
EndFor