Objective-C++
1 program
Added 2026-02-06T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ObjC++, Obj-C++
Provenance: commit 158c4d3be4 · authored 2026-02-06T09:53:11+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/objective-cppExtensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mm | linguist | primary | 1.9M files |
.mm | pygments | primary | 1.9M files |
.hh | pygments | secondary | 3.9M files |
Related languages
LLM-contributed programs
C++ STL with Objective-C
Provenance: commit 158c4d3be4 · authored 2026-02-06T09:53:11+01:00 · agent claude-code · model sonnet · WebSearch disabled
#import <Foundation/Foundation.h>
#include <vector>
#include <iostream>
int main() {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// C++ STL vector
std::vector<int> numbers = {1, 2, 3, 4, 5};
// Objective-C NSString
NSString *message = @"Sum: ";
// Calculate sum using C++
int sum = 0;
for (int num : numbers) {
sum += num;
}
// Print using Objective-C and C++
std::cout << [message UTF8String] << sum << std::endl;
[pool drain];
return 0;
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)