From 092b552729e26a36e100a702cbd6651c802f134c Mon Sep 17 00:00:00 2001 From: Samuel-de-Oliveira Date: Wed, 19 Oct 2022 18:26:21 -0300 Subject: [PATCH] Final version --- README.md | 4 ++-- lib.hpp | 2 +- main.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4757bcc..71a1d4c 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ This is a software created for learning pruposes, thats mean it's not a super professional program to use to do perfect things, but you can -install it if you want to test it. For while this software is on a BETA -version. +install it if you want to test it. I made this program to learn more about Git, Github, Makefile and C++. +Anyway I'm accept pullrequest or issues from this repository. ## Okay but... How I can install it? diff --git a/lib.hpp b/lib.hpp index 95cd947..759626c 100644 --- a/lib.hpp +++ b/lib.hpp @@ -10,7 +10,7 @@ #include const float Pi {3.1415926535897}; // I conseidered this value for π. -const char Version[12] {"0.1.1 Beta."}; // Version's number. +const char Version[4] {"1.0"}; // Version's number. int parseInt(const std::string &str) { diff --git a/main.cpp b/main.cpp index bc92b18..a431cb2 100644 --- a/main.cpp +++ b/main.cpp @@ -12,7 +12,7 @@ // Import Area #include -#include "lib.h" +#include "lib.hpp" #include #include