/* Test a simple macro template */
#define foo(a,b) { a b }

proc main()
{
    foo(say,("hello world\n"));
    foo(say,("nice to meet you\n"));
}