resourcestring 1



resourcestring1
Smart pascal source code
resourcestring hw = " hello world "; resourcestring byebye = 'bye bye'; WriteLn(hw); var v := byebye; WriteLn(v); {<<< RESULT - CONSOLE LOG >>> ----------------------------- hello world bye bye ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}