11 lines
97 B
C++
11 lines
97 B
C++
|
#include "bar.hpp"
|
||
|
#include "baz.hpp"
|
||
|
#include "foo.hpp"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
foo();
|
||
|
bar();
|
||
|
baz();
|
||
|
}
|