tmain.B.cpp - numeric - C++ library with numerical algorithms | |
git clone git://src.adamsgaard.dk/numeric | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
tmain.B.cpp (185B) | |
--- | |
1 #include <iostream> | |
2 | |
3 // Prototype functions | |
4 #include "main.B.h" | |
5 | |
6 int main() | |
7 { | |
8 // Call functions from object files | |
9 hello(); | |
10 your_username(); | |
11 | |
12 // Successfull exit | |
13 return 0; | |
14 } |