Difference between revisions of "The simplest TinyOS program"
Line 1: | Line 1: | ||
There is some value in knowing the the simplest code that can be compiled without errors. The C equivalent is | There is some value in knowing the the simplest code that can be compiled without errors. The C equivalent is | ||
− | |||
− | |||
int main () { | int main () { | ||
return 0; | return 0; | ||
} | } | ||
− | + | ||
which is written in a file, say, simple.c and compiled with the command | which is written in a file, say, simple.c and compiled with the command |
Revision as of 22:00, 9 September 2008
There is some value in knowing the the simplest code that can be compiled without errors. The C equivalent is
int main () {
return 0;
}
which is written in a file, say, simple.c and compiled with the command
$ gcc test.c
which produces the executable file a.out, which of course does nothing!