JavaScript | C/C++ | MATLAB | MATLAB |
---|---|---|---|
<script> alert("Hello World!"); </script> | #include <stdio.h> void main() { printf("Hello world!\n"); } | disp('Hello world!'); | fprintf("Hello world!\n"); |
JavaScript |
---|
<!DOCTYPE html> <html> <head> <script> alert("Hello World!"); </script> </head> <body> </body> </html> |