top of page
Turbo Pascal 3 -
Developers could embed raw machine language directly into their Pascal code using the inline statement, allowing for extreme optimization of time-critical routines.
$O VIDEO procedure DrawScreen; begin for i := 0 to 1999 do if odd(i) then Screen[i] := $17 White on blue else Screen[i] := ord('A') + (i mod 26); end; turbo pascal 3
The defining feature of Turbo Pascal 3 was its staggering speed. Anders Hejlsberg, the brilliant Danish architect behind the compiler, wrote it entirely in assembly language. Developers could embed raw machine language directly into
bottom of page