File tree Expand file tree Collapse file tree 6 files changed +87
-0
lines changed
0001_two_sum.dSYM/Contents Expand file tree Collapse file tree 6 files changed +87
-0
lines changed Original file line number Diff line number Diff line change 11.DS_Store
2+ # Prerequisites
3+ * .d
4+
5+ # Compiled Object files
6+ * .slo
7+ * .lo
8+ * .o
9+ * .obj
10+
11+ # Precompiled Headers
12+ * .gch
13+ * .pch
14+
15+ # Compiled Dynamic libraries
16+ * .so
17+ * .dylib
18+ * .dll
19+
20+ # Fortran module files
21+ * .mod
22+ * .smod
23+
24+ # Compiled Static libraries
25+ * .lai
26+ * .la
27+ * .a
28+ * .lib
29+
30+ # Executables
31+ * .exe
32+ * .out
33+ * .app
234
Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "type" : " shell" ,
8+ "label" : " clang++ build active file" ,
9+ "command" : " /usr/bin/clang++" ,
10+ "args" : [
11+ " -std=c++17" ,
12+ " -stdlib=libc++" ,
13+ " -g" ,
14+ " ${file}" ,
15+ " -o" ,
16+ " ${fileDirname}/${fileBasenameNoExtension}"
17+ ],
18+ "options" : {
19+ "cwd" : " ${workspaceFolder}"
20+ },
21+ "problemMatcher" : [" $gcc" ],
22+ "group" : {
23+ "kind" : " build" ,
24+ "isDefault" : true
25+ }
26+ }
27+ ]
28+ }
Original file line number Diff line number Diff line change 1+ #include < iostream>
2+ using std::cout;
3+
4+ int main ()
5+ {
6+ cout << " hola" ;
7+ }
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+ <plist version =" 1.0" >
4+ <dict >
5+ <key >CFBundleDevelopmentRegion </key >
6+ <string >English </string >
7+ <key >CFBundleIdentifier </key >
8+ <string >com.apple.xcode.dsym.0001_two_sum </string >
9+ <key >CFBundleInfoDictionaryVersion </key >
10+ <string >6.0 </string >
11+ <key >CFBundlePackageType </key >
12+ <string >dSYM </string >
13+ <key >CFBundleSignature </key >
14+ <string >???? </string >
15+ <key >CFBundleShortVersionString </key >
16+ <string >1.0 </string >
17+ <key >CFBundleVersion </key >
18+ <string >1 </string >
19+ </dict >
20+ </plist >
You can’t perform that action at this time.
0 commit comments