with



with
Smart pascal source code
with a := 1 do WriteLn(a); with b := " a ", d := 3 do begin with c := b + " c " do WriteLn(c); WriteLn(d); with c: Integer = d + 1 do WriteLn(c); end; {<<< RESULT - CONSOLE LOG >>> ----------------------------- 1 ac 3 4 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}