User:Guest-1052/sandbox: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
(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>")
 
No edit summary
 
Line 1: Line 1:
you can test shit here  
you can test shit here  


code  
code  

Latest revision as of 13: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");
}

}