aboutsummaryrefslogtreecommitdiff
path: root/cpp02/ex01/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp02/ex01/main.cpp')
-rw-r--r--cpp02/ex01/main.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/cpp02/ex01/main.cpp b/cpp02/ex01/main.cpp
deleted file mode 100644
index 34d365a..0000000
--- a/cpp02/ex01/main.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* main.cpp :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/04/13 11:51:15 by charles #+# #+# */
-/* Updated: 2020/10/19 11:28:50 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include <iostream>
-#include "Fixed.hpp"
-
-int main(void)
-{
- Fixed a;
- Fixed const b(10);
- Fixed const c(42.42f);
- Fixed const d(b);
-
- a = Fixed(1234.4321f);
- std::cout << "a is " << a << std::endl;
- std::cout << "b is " << b << std::endl;
- std::cout << "c is " << c << std::endl;
- std::cout << "d is " << d << std::endl;
-
- std::cout << "a is " << a.toInt() << " as integer" << std::endl;
- std::cout << "b is " << b.toInt() << " as integer" << std::endl;
- std::cout << "c is " << c.toInt() << " as integer" << std::endl;
- std::cout << "d is " << d.toInt() << " as integer" << std::endl;
-
- return 0;
-}