Template project for University of York ELE00032C Lab 5

Dependencies:   UoY-serial

main.cpp

Committer:
ajp109
Date:
2021-01-11
Revision:
0:77209603a6fe
Child:
1:f32fea0468ad

File content as of revision 0:77209603a6fe:

#include "mbed.h"

int main()
{
    int x = 4;
    x = 6;
    int y;
    y = 2*x;
    x = 7;
    
    printf("x:%d y:%d\n", x, y);
    
    // Do nothing, forever...
    while (true);
}