Difference between revisions of "User:Renzo"
Jump to navigation
Jump to search
(Created page with "This is a test: <syntaxhighlight lang="python"> print('hello world') </syntaxhighlight>") |
m |
||
Line 1: | Line 1: | ||
− | This is a test: | + | This is a test in python: |
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
print('hello world') | print('hello world') | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | This is a test in C: | ||
+ | <syntaxhighlight lang="python"> | ||
+ | #include <stdio.h> | ||
+ | int main(int argc, char*argv[]) | ||
+ | { | ||
+ | printf("hello world\n"); | ||
+ | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 12:42, 24 October 2013
This is a test in python:
print('hello world')
This is a test in C:
#include <stdio.h>
int main(int argc, char*argv[])
{
printf("hello world\n");
}