#include "actions.h"

int main()
{
    display( SOUTH, "hi" ); // function call
    display( NORTH, "hello" ); // function call
    return 0;
}