Codebase list gccintro / debian/1.0-1 tmain.cc
debian/1.0-1

Tree @debian/1.0-1 (Download .tar.gz)

tmain.cc @debian/1.0-1raw · history · blame

#include <iostream>
#include "buffer.h"
#include "tprint.h"

using namespace std;

int 
main ()
{
  Buffer<float> f(10);
  f.insert (0.23);
  f.insert (1.0 + f.get());
  print (f);
  return 0;
}