This website works better with JavaScript.
Home
Explore
Help
Sign In
kornerr
/
research-portable-memory
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
d
main
Михаил Капелько
7 months ago
parent
8027ffbdba
commit
b4266c3837
8 changed files
with
7 additions
and
11 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+0
-3
cpp/Memory/src/Memory.Aux.c
+0
-0
cpp/Memory/src/Memory.Aux.cpp
+0
-1
cpp/gen
BIN
cpp/mem
+0
-7
cpp/src/test.c
+5
-0
cpp/src/test.cpp
+1
-0
gen-cpp
+ 1
- 0
.gitignore
View File
@@ -0,0 +1 @@
mem
+ 0
- 3
cpp/Memory/src/Memory.Aux.c
View File
@@ -1,3 +0,0 @@
UT_hash
+ 0
- 0
cpp/Memory/src/Memory.Aux.cpp
View File
+ 0
- 1
cpp/gen
View File
@@ -1 +0,0 @@
cc -o mem src/test.c
BIN
cpp/mem
View File
+ 0
- 7
cpp/src/test.c
View File
@@ -1,7 +0,0 @@
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
+ 5
- 0
cpp/src/test.cpp
View File
@@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello, world! C++" << std::endl;
}
+ 1
- 0
gen-cpp
View File
@@ -0,0 +1 @@
c++ -o mem cpp/src/test.cpp
Write
Preview
Loading…
Cancel
Save