mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
12 lines
212 B
C++
12 lines
212 B
C++
#include "hund.cpp"
|
|
#include "katze.cpp"
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
int main(){
|
|
katze a;
|
|
std::string laut = a.getLaut();
|
|
std::cout << laut << std::endl;
|
|
return 0;
|
|
} |