User:Guest-1052/sandbox

From Our World of Text Wiki
< User:Guest-1052
Revision as of 09:53, 1 September 2023 by 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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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");
}

}