open array 2



open_array2
Smart pascal source code
procedure WriteLnFormat(fmt: String; const args: array of const); begin WriteLn(Format(fmt, args)); end; WriteLnFormat('hello %s', ['World']); WriteLnFormat('%d %d %d', [1, 2, 3]); {<<< RESULT - CONSOLE LOG >>> ----------------------------- hello World 1 2 3 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}