GCC Code Coverage Report


Directory: ./
File: Executable/hello_world.cpp
Date: 2024-04-14 07:32:34
Exec Total Coverage
Lines: 3 3 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ______ ______ _ _ _____ ______
2 // | ____| ____| | (_)/ ____| | ____|
3 // | |__ | |__ | | _| (___ ___| |__
4 // | __| | __| | | | |\___ \ / __| __|
5 // | | | |____| |____| |____) | (__| |____
6 // |_| |______|______|_|_____/ \___|______|
7 // Finite Elements for Life Sciences and Engineering
8 //
9 // License: LGL2.1 License
10 // FELiScE default license: LICENSE in root folder
11 //
12 // Main authors: Vicente Mataix Ferrandiz
13 //
14
15 // System includes
16 #include <iostream>
17
18 // External includes
19
20 // Project includes
21 #include "Core/felisce_version.hpp"
22
23 1 int main() {
24 1 std::cout << "Hello FELiScE " << felisce::GetMajorVersion() << "." << felisce::GetMinorVersion() << " World!" << std::endl;
25 1 return 0;
26 }
27