aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 18a3ec879b4528c2521b8646ab6800f8ed07a108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   main.cpp                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/01 10:06:52 by cacharle          #+#    #+#             */
/*   Updated: 2020/04/15 10:56:36 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "List.hpp"

int main()
{
    ft::List<int> l;
	return 0;
}