kge/BufferTest.cc

13 lines
135 B
C++

#include <iostream>
#include "Buffer.h"
int
main()
{
Buffer buffer("hlo, world");
std::cout << buffer.Contents() << std::endl;
}