Simple windowed application: Difference between revisions

m
→‎{{header|Objective-C}}: number only to "Clicked N times" string
(obj-c with "*Step" fw; tested only on GNUstep, as usual (but it should work with Cocoa too))
m (→‎{{header|Objective-C}}: number only to "Clicked N times" string)
Line 616:
{
counter++;
[text setIntValuesetStringValue: [NSString stringWithFormat: @"Clicked %d times", counter]];
}
@end
Line 634:
return 0;
}</lang>
 
 
=={{header|Perl}}==