/ Mbed 2 deprecated Example_printf

Dependencies:   mbed

main.cpp

Committer:
mbedAustin
Date:
2014-10-07
Revision:
0:f1ef33a82ddb
Child:
1:039688a53fff

File content as of revision 0:f1ef33a82ddb:

//
// This program prints "Hello World" to the terminal
//
#include "mbed.h"

int main() {
    printf("Hello World!\n\r");
    while(1);
    // Do nothing
}