Content deleted Content added
FatalError (talk | contribs) mNo edit summary |
FatalError (talk | contribs) →"Hello, world!" in Ch: removed the shebang line, not necessary |
||
Line 20:
There are two ways to run Ch code. One is:
printf("Hello world!\n");
Another is:
#include <stdio.h>
int main() {
printf("Hello world!\n");
}
Ch also supports interactive shell command and C statements.
|