The SQA Basic language in Rational Robot is very similar to the Basic language. The following is an example of a for loop, where the cstri () function converts an integer into a string. Sub Main Dim Result AS INTEGER DIM I as Integer ... 'Begin of for Loop for i = 1 To 100 Step 1 ... InputKeys CSTR (i * 3)' This place set input value is i * 3. ...... next 'end Of for loop ... end sub