1
0

🗑️」 clean: cleaned project.

This commit is contained in:
2025-04-09 15:21:27 +02:00
parent 9035e8da97
commit a432c8defd
8 changed files with 127 additions and 15 deletions

26
ex01/main.cpp Normal file
View File

@ -0,0 +1,26 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/09 15:17:59 by adjoly #+# #+# */
/* Updated: 2025/04/09 15:20:20 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "iter.hpp"
#include <iostream>
void test(int &nb) {
nb++;
}
int main(void) {
int test[4] = {1, 2, 3, 4};
for (int i = 0; i < 4; i++) {
std::cout << test[i] << std::endl;
}
}