A new editor will appear so you can enter your source code. Copy/Paste the following source code into your editor (we will uncomment the commented lines later):
#include <stdio.h> #include <profile.h>
int main(unsigned long long id) { //prof_clear(); //prof_start(); printf("Hello Cell (0x%llx)\n", id); //prof_stop(); return 0; }