On 29 Oct 2017, at 11:58, Bertrand Gmail <[email protected]> wrote: > > Moreover, I could put "string.size" instead of "[string size]". But I wonder > if it ist an Objc-2 feature and if it will compile with gcc and it's libobjc.
string.size compiles down to the same thing as [string size], so it’s a property of the compiler, not the run time. It should work with any modern compiler. Clang with GNUstep libobjc supports all of the features (including ARC) of a modern Objective-C dialect. David _______________________________________________ Discuss-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnustep
