User:Guest-1052/sandbox: Difference between revisions
Jump to navigation
Jump to search
Guest-1052 (talk | contribs) (Created page with "you can test shit here code <syntaxhighlight lang="c">#include <stdio.h> int main(){ printf("Hello world"); return 0; }</syntaxhighlight> <syntaxhighlight lang="java">class HelloWorld{ public static void main(String[] args){ System.out.println("Hello world"); } }</syntaxhighlight>") |
Guest-1052 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
you can test shit here | you can test shit here | ||
code | code |
Latest revision as of 12:51, 17 October 2023
you can test shit here
code
#include <stdio.h>
int main(){
printf("Hello world");
return 0;
}
class HelloWorld{
public static void main(String[] args){
System.out.println("Hello world");
}
}