summaryrefslogtreecommitdiffstats
path: root/src/hwrld.cpp
blob: d486c74623d147ccef06da4e88e36ca0bd60ea92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include <string>
#include "hwrld.h"


int main() {
    std::string a = "Hello,", b = "World!";
    std::cout << concat(a, b) << std::endl;
    std::vector<int> is = {1, 2, 3, 4};
    std::cout << sum_of_ints(is) << std::endl;
}