🎉」 init: hello world !

This commit is contained in:
2025-01-20 16:52:02 +01:00
parent 8cd700e0da
commit 1c32d3b455
3 changed files with 80 additions and 0 deletions

20
src/webserv.cpp Normal file
View File

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* webserv.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/20 16:33:31 by adjoly #+# #+# */
/* Updated: 2025/01/20 16:35:02 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include <iostream>
int main(int ac, char **av, char **env) {
(void)ac;
(void)av;
(void)env;
std::cout << "test" << std::endl;
}