main.cpp
 1  /* ************************************************************************** */
 2  /*                                                                            */
 3  /*                                                        :::      ::::::::   */
 4  /*   main.cpp                                           :+:      :+:    :+:   */
 5  /*                                                    +:+ +:+         +:+     */
 6  /*   By: gychoi <gychoi@student.42seoul.kr>         +#+  +:+       +#+        */
 7  /*                                                +#+#+#+#+#+   +#+           */
 8  /*   Created: 2023/07/28 01:10:24 by gychoi            #+#    #+#             */
 9  /*   Updated: 2023/07/28 02:19:41 by gychoi           ###   ########.fr       */
10  /*                                                                            */
11  /* ************************************************************************** */
12  
13  #include "Harl.hpp"
14  
15  int	main(void)
16  {
17  	Harl	harl;
18  
19  	harl.complain("DEBUG");
20  	harl.complain("INFO");
21  	harl.complain("WARNING");
22  	harl.complain("ERROR");
23  	harl.complain("HAPPY");
24  	return (0);
25  }