Михаил Капелько 3 meses atrás
pai
commit
b4266c3837
8 arquivos alterados com 7 adições e 11 exclusões
  1. +1
    -0
      .gitignore
  2. +0
    -3
      cpp/Memory/src/Memory.Aux.c
  3. +0
    -0
      cpp/Memory/src/Memory.Aux.cpp
  4. +0
    -1
      cpp/gen
  5. BIN
      cpp/mem
  6. +0
    -7
      cpp/src/test.c
  7. +5
    -0
      cpp/src/test.cpp
  8. +1
    -0
      gen-cpp

+ 1
- 0
.gitignore Ver arquivo

@@ -0,0 +1 @@
mem

+ 0
- 3
cpp/Memory/src/Memory.Aux.c Ver arquivo

@@ -1,3 +0,0 @@

UT_hash


+ 0
- 0
cpp/Memory/src/Memory.Aux.cpp Ver arquivo


+ 0
- 1
cpp/gen Ver arquivo

@@ -1 +0,0 @@
cc -o mem src/test.c

BIN
cpp/mem Ver arquivo


+ 0
- 7
cpp/src/test.c Ver arquivo

@@ -1,7 +0,0 @@
#include <stdio.h>

int main() {
printf("Hello, world!\n");

return 0;
}

+ 5
- 0
cpp/src/test.cpp Ver arquivo

@@ -0,0 +1,5 @@
#include <iostream>

int main() {
std::cout << "Hello, world! C++" << std::endl;
}

+ 1
- 0
gen-cpp Ver arquivo

@@ -0,0 +1 @@
c++ -o mem cpp/src/test.cpp

Carregando…
Cancelar
Salvar