aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex00/main.cpp
blob: b82c1065076a48158bc2c6595418fea74c82a110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   main.cpp                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/16 10:54:10 by charles           #+#    #+#             */
/*   Updated: 2020/11/18 15:53:33 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include <iostream>
#include <sstream>
#include <string>

int main(int argc, char **argv)
{
    // if (argc != 2)
    // {
    //     std::cerr << "Usage: " << argv[0] << " litteral" << std::endl;
    //     return 1;
    // }
    //
    //
    // std::string s(argv[1]);
    //
    // if (s.empty())
    // {
    //     std::cerr << "Cannot be empty" << std::endl;
    //     return 1;
    // }


    return 0;
}