summaryrefslogtreecommitdiffstats
path: root/lowercasing_test/src/grouping_test/hello-world/hello-world.cpp
blob: 42504323bbe0602786a35b4daf3a285de8b3f436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#include <grouping_test/hello-world-lib/hello-world.h>

class App : public FastOS_Application
{
public:
    int Main();
};

int
App::Main()
{
    HelloWorld::print();
    fprintf(stdout, "C++/app/Hello World\n");
    return 0;
}

int
main(int argc, char **argv)
{
    App myapp;
    return myapp.Entry(argc, argv);
}