aboutsummaryrefslogtreecommitdiff
path: root/cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-11-10 12:01:44 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-11-10 12:01:44 +0100
commit18ca1fc67ccc7bf176287f7b2908a33a597ec67a (patch)
tree930e1604156d6b8957d8c01786a18f670a202bc3 /cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp
parent9dd7a48967f99793b818f7362ac8e95717186774 (diff)
downloadpiscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.tar.gz
piscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.tar.bz2
piscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.zip
Added more tests for cpp02/02
Diffstat (limited to 'cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp')
-rw-r--r--cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp b/cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp
new file mode 100644
index 0000000..f2eb5e0
--- /dev/null
+++ b/cpp02/ex01/main_DO_NOT_TURN_ME_IN.cpp
@@ -0,0 +1,36 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* main_DO_NOT_TURN_ME_IN.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/13 11:51:15 by charles #+# #+# */
+/* Updated: 2020/11/10 10:00:32 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;
+}