/* CSE 333 Su12 lecture 12 demo: compare_problem/main.cc */
/* Gribble/Perkins */

// Attempt to use comp<T> generic function - fails at compile time. (Why?)

#include <iostream>
#include "compare.h"

using namespace std;

int main(int argc, char **argv) {
  cout << comp<int>(10, 20);
  cout << endl;
  return 0;
}