#include "Talos.hxx"
using namespace Talos;

int main()
{
  TRY; // Opens a 'try' block.

  ExtStream file("file.dat");

  file.Find("Finland");

  END; // Catches exceptions.

  return 0;
}

