mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
16 lines
246 B
ObjectPascal
16 lines
246 B
ObjectPascal
{ %norun }
|
|
{ %target=darwin,ios,iphonesim}
|
|
{ %opt=-gw3 }
|
|
|
|
{$mode objfpc}{$h+}
|
|
{$ModeSwitch objectivec2}
|
|
|
|
function NSStringToString(ns: NSString): String;
|
|
begin
|
|
Result := '';
|
|
end;
|
|
|
|
begin
|
|
WriteLn(NSStringToString(nil));
|
|
end.
|