1
0

🏗️」 wip(megaphone): Started megaphone

This commit is contained in:
2024-10-25 16:56:52 +02:00
parent 5e353743d7
commit 5b36260025
5 changed files with 67 additions and 0 deletions

20
ex00/megaphone.cpp Normal file
View File

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* megaphone.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/25 16:31:50 by adjoly #+# #+# */
/* Updated: 2024/10/25 16:54:55 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include <iostream>
int main(int ac, char **av)
{
(void)av;
if (ac < 2)
std::cout << "* LOUD AND UNBEARABLE FEEDBACK NOISE *" << std::endl;
}