This commit is contained in:
Imbus 2025-01-10 08:15:31 +01:00
commit 5626d1eacb
24 changed files with 512 additions and 0 deletions

6
tent1/Makefile Normal file
View file

@ -0,0 +1,6 @@
TARGET = main.elf
SRCS = main.cc
all: $(TARGET)
include ../config.mk

5
tent1/main.cc Normal file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hola" << std::endl;
}