Added HangmanGame class, but does not work yet

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

log.cpp

Committer:
markpsymonds
Date:
2017-12-04
Revision:
1:a5ec6f9dcf0d
Parent:
0:fa7450a43b99

File content as of revision 1:a5ec6f9dcf0d:

//
// Filename: log.cpp
//
// Diagnostic logger.
//

#include "log.h"

#include <stdio.h>

void Log(const std::string &data)
{
    printf("%s\n", data.c_str());
}