Template project for University of York ELE00032C Lab 1

Dependencies:   UoY-serial

main.cpp

Committer:
ajp109
Date:
2021-12-16
Revision:
1:b2ac3acd4518
Parent:
0:77209603a6fe

File content as of revision 1:b2ac3acd4518:

#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);
}