Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- gignops
- Date:
- 2012-10-07
- Revision:
- 0:4ab1392a0142
File content as of revision 0:4ab1392a0142:
#include "mbed.h"
#include "tp.h"
#include "vm.h"
int main(void)
{
int argc = 0;
char ** argv = 0;
tp_vm *tp = tp_init(argc,argv);
tp_call(tp,"py2bc","tinypy",tp_None);
tp_deinit(tp);
return(0);
}