26 lines
484 B
C++
26 lines
484 B
C++
#include <iostream>
|
|
#include "ax_funktions.hpp"
|
|
|
|
int number = 12;
|
|
|
|
|
|
main()
|
|
{
|
|
std::cout << "Hallo Welt" << std::endl << number << std::endl;
|
|
|
|
std::cout << "experimentelle und evtl nicht fehlerfreier Code" << std::endl;
|
|
|
|
//Funktionstest
|
|
|
|
for (int i = 0; i < 2; i++)
|
|
{
|
|
ax::print_number(i); // neue Funktion unsicher und unvollständig
|
|
}
|
|
|
|
ax::print_number(ax::sqrt(3));
|
|
|
|
std::cout << "a " << "wird zu: " << ax::shift('a')<< std::endl;
|
|
|
|
|
|
|
|
}; |