Finishing changes

This commit is contained in:
2025-09-10 17:34:11 +02:00
parent b4499a6bf0
commit 1b0cebadb0
3 changed files with 42 additions and 11 deletions

View File

@@ -6,24 +6,22 @@
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/09/10 00:54:19 by tigos #+# #+# */
/* Updated: 2025/09/10 01:05:59 by aortigos ### ########.fr */
/* Updated: 2025/09/10 11:10:35 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Fixed/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 << b.getRawBits() << std::endl;
std::cout << c.getRawBits() << std::endl;
return (0);
}