aardvark  0.4.0
Functions
main.cpp File Reference

This is a test of CMake, doxygen, and GitHub. More...

#include <iostream>
Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

int add (int a, int b)
 
int main (int, char **)
 

Detailed Description

This is a test of CMake, doxygen, and GitHub.

This is the long brief at the top of main.cpp.

Author
Seth McNeill
Date
1/28/2021

Definition in file main.cpp.

Function Documentation

◆ add()

int add ( int  a,
int  b 
)

Add two integers (brief)

Adds a and b, two integers (long description)

Parameters
ainteger
binteger
Returns
integer sum of a and b

Definition at line 21 of file main.cpp.

21  {
22  return(a + b);
23 }

◆ main()

int main ( int  ,
char **   
)

Definition at line 26 of file main.cpp.

26  {
27  std::cout << "Hello, world! Ver 2.1\n";
28 }