summaryrefslogtreecommitdiff
path: root/doc/aapl/ex_astring.cpp
blob: 710a4b62d56722f5a95f91c45dc12036b640302f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include "astring.h"

using namespace std;

int main()
{
	String s = "hello";
	s += " there my friend";
	cout << s.data << endl;
}