Skip to content

Commit aac44dc

Browse files
committed
Well-detailed semantic versioning and build version in banner.
1 parent 0afc053 commit aac44dc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@
1616
* along with Zhivo. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
#include <zhivo/Zhivo.hpp>
19+
#include <Zhivo.hpp>
2020

2121
#include <iostream>
2222
#include <stdexcept>
2323

2424
auto printBanner(ArgumentParser argParse) -> void {
2525
std::cout
26-
<< "\u001b[1;36mZhivo Programming Language "
26+
<< "\u001b[1;36mZhivo Programming Language ("
2727
<< ZHIVO_VERSION
28-
<< "\u001b[0m"
28+
<< ", "
29+
<< ZHIVO_BUILD_TIME
30+
<< ")\u001b[0m"
2931
<< std::endl;
3032

3133
std::cout << std::endl

0 commit comments

Comments
 (0)