summaryrefslogtreecommitdiff
path: root/6p16.cpp
blob: f5220984d099ceb635d5467aab48547c39a82ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>

/*
 *
 * 6.16
 *
 *
 */

bool is_empty(const std::string &a) {

	return a.empty();
}

int main () {

	std::cout << is_empty("Hello") << std::endl;
	return 0;
}