From 9dd7a48967f99793b818f7362ac8e95717186774 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 10 Nov 2020 09:26:04 +0100 Subject: Added more tests for cpp01/07 --- cpp02/ex00/main.cpp | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 cpp02/ex00/main.cpp (limited to 'cpp02/ex00/main.cpp') diff --git a/cpp02/ex00/main.cpp b/cpp02/ex00/main.cpp deleted file mode 100644 index 494dbb3..0000000 --- a/cpp02/ex00/main.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* main.cpp :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: charles +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2020/04/13 11:51:15 by charles #+# #+# */ -/* Updated: 2020/04/13 11:51:16 by charles ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include -#include "Fixed.hpp" - -int main(void) -{ - Fixed a; - Fixed b(a); - Fixed c; - - c = b; - std::cout << a.getRawBits() << std::endl; - std::cout << b.getRawBits() << std::endl; - std::cout << c.getRawBits() << std::endl; - return 0; -} -- cgit