User:Maddy from Celeste/sandbox: Difference between revisions
Appearance
Content deleted Content added
I'll let someone smarter than me figure this out Tags: Blanking Manual revert 2017 wikitext editor |
syntaxhighlight in image frame Tag: Replaced |
||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Image frame|innerstyle=text-align:left;|content= |
|||
<syntaxhighlight lang="C"> |
|||
#include <stdio.h> |
|||
int |
|||
main (void) |
|||
{ |
|||
puts ("Hello, world!"); |
|||
return 0; |
|||
} |
|||
</syntaxhighlight> |
|||
<syntaxhighlight lang="Scheme"> |
|||
(display "Hello, World") |
|||
</syntaxhighlight> |
|||
|caption=Hello world in C (top) and Scheme (bottom) |
|||
}} |
Latest revision as of 21:38, 5 December 2023
#include <stdio.h>
int
main (void)
{
puts ("Hello, world!");
return 0;
}
(display "Hello, World")