(main): Comment out use of obsolete -withElementsCall:.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1377 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-04-16 22:04:21 +00:00
parent 64a4416931
commit 60654ffbbf

View file

@ -24,6 +24,7 @@ int main()
withString:@"changed"]; withString:@"changed"];
print_string(s2); print_string(s2);
#if 0
/* An example of treating a string like a Collection: /* An example of treating a string like a Collection:
Increment each char. */ Increment each char. */
{ {
@ -37,6 +38,7 @@ int main()
[s2 withElementsCall:rot13]; [s2 withElementsCall:rot13];
print_string(s3); print_string(s3);
} }
#endif
exit(0); exit(0);
} }