From b4266c38379b0f0599f97bd634244f6c845ca4d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Tue, 19 Mar 2024 22:30:25 +0300 Subject: [PATCH] d --- .gitignore | 1 + cpp/Memory/src/Memory.Aux.c | 3 --- cpp/Memory/src/Memory.Aux.cpp | 0 cpp/gen | 1 - cpp/mem | Bin 33024 -> 0 bytes cpp/src/test.c | 7 ------- cpp/src/test.cpp | 5 +++++ gen-cpp | 1 + 8 files changed, 7 insertions(+), 11 deletions(-) create mode 100644 .gitignore delete mode 100644 cpp/Memory/src/Memory.Aux.c create mode 100644 cpp/Memory/src/Memory.Aux.cpp delete mode 100755 cpp/gen delete mode 100755 cpp/mem delete mode 100644 cpp/src/test.c create mode 100644 cpp/src/test.cpp create mode 100755 gen-cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f5c0b2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +mem diff --git a/cpp/Memory/src/Memory.Aux.c b/cpp/Memory/src/Memory.Aux.c deleted file mode 100644 index 1857741..0000000 --- a/cpp/Memory/src/Memory.Aux.c +++ /dev/null @@ -1,3 +0,0 @@ - -UT_hash - diff --git a/cpp/Memory/src/Memory.Aux.cpp b/cpp/Memory/src/Memory.Aux.cpp new file mode 100644 index 0000000..e69de29 diff --git a/cpp/gen b/cpp/gen deleted file mode 100755 index ba9d386..0000000 --- a/cpp/gen +++ /dev/null @@ -1 +0,0 @@ -cc -o mem src/test.c diff --git a/cpp/mem b/cpp/mem deleted file mode 100755 index a345694b9a1dfc62f3842fc3c4a2f95ca18d435e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33024 zcmeI*&r1|x7{Kv&)5^+p35uc)+rh{P?S}_1(poO96l!T8LA<%{>MpFiu|H5RvLHec zb@tGqKcOyxx2PZpqK-wEEm*vjaFk;OhUGdIUZn4ejwwczsD?3^{k(!*?yo)dovO!enI}p)~7vYOZ(R*X#82nn#;ngJ`q1UYakIvbIo~Da%B2y+^*@ zq(4aW<{Hs@dL33>ouR>rL3?R*WIVVU$-pgiZ|?Q}&`?{wN35MKM=pcp+t+K8eO*fi z$NS8vm%HwMVBCXE+FZmhC)#k9o zW6AY=K1hF3`h5~(649pnYDDWt=XLviV|(uonM+8tOZ3*OmEK|@)0}?V=gv=aX|nc)*3tVs+Vpq( zC3Mc6!$80M8^t!(BI_Antk!aKJr{dqU4=|=^a<&-{%XS*y>{I`S1%d@2q1s}0tg_0 z00IagfB*srAbW01FX`oP@z<$edMfD$0|%vhV!rCbwP&BFmtVziz5Lx(*STD= zSU#PYFIS4$<9lU5p8-B5p)K0$^St`JZ&G@V@R@Yojy8Q}xLvBmT_raYJXRdtDcEjo z9byCl1Q0*~0R#|0009ILKmY**5I_I{1Q0*~0R#|0009ILKmY**5I_I{1Q0*~0R#|0 z009ILKmY**5I_I{1Q0*~0R#|0009ILKmY**{-r=deoVi8J}IFu2#CHUpjGm)>9@qg z=C+ga758K~;*Zsr6KJz{Duq&QCP?IO%$ft5=zNR$yd+z8E^l)Sx#@Z>XY;wKY_4MV z%uN+aX1{Segu8dff-j!yx(-Qn%7(uGKy!UBg7muSnwHl{$QS9imbb2abZLJ8{dbj- diff --git a/cpp/src/test.c b/cpp/src/test.c deleted file mode 100644 index 1506565..0000000 --- a/cpp/src/test.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -int main() { - printf("Hello, world!\n"); - - return 0; -} diff --git a/cpp/src/test.cpp b/cpp/src/test.cpp new file mode 100644 index 0000000..37130f3 --- /dev/null +++ b/cpp/src/test.cpp @@ -0,0 +1,5 @@ +#include + +int main() { + std::cout << "Hello, world! C++" << std::endl; +} diff --git a/gen-cpp b/gen-cpp new file mode 100755 index 0000000..822eed2 --- /dev/null +++ b/gen-cpp @@ -0,0 +1 @@ +c++ -o mem cpp/src/test.cpp