+ | First commit, makefile and basic compilation

This commit is contained in:
TheRedShip
2024-09-27 15:01:48 +02:00
parent b1a5704781
commit 62cddcfb6f
5 changed files with 112 additions and 0 deletions

19
srcs/RT.cpp Normal file
View File

@ -0,0 +1,19 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* RT.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: TheRed <TheRed@students.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/27 14:51:49 by TheRed #+# #+# */
/* Updated: 2024/09/27 14:51:49 by TheRed ### ########.fr */
/* */
/* ************************************************************************** */
#include "RT.h"
int main(void)
{
std::cout << "Hello World!" << std::endl;
return (0);
}