Skip to content
Snippets Groups Projects
Commit cd6f5938 authored by estevesm's avatar estevesm
Browse files

Uniformized the returns

parent 2ee65356
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/php #!/usr/bin/php
<?php echo "Content-type: text/html\n\n"; ?> <?php echo "Content-type: text/html\n\n"; ?>
<?php echo "Hello, World!"; ?> <?php echo "Hello, World!";?>
#!/usr/bin/perl #!/usr/bin/perl
print "Content-type: text/html\n\n"; print "Content-type: text/html\n\n";
print "Hello, World!"; print "Hello, World!\n";
\ No newline at end of file \ No newline at end of file
#!/usr/bin/python #!/usr/bin/python
print "Content-type: text/html\n"
print "Content-type:text/html\r\n\r\n" print "Hello, World!"
print '<html>' \ No newline at end of file
print '<head>'
print '<title>Hello World!</title>'
print '</head>'
print '<body>'
print '<h2>Hello, World!</h2>'
print '</body>'
print '</html>'
\ No newline at end of file
#!/bin/bash #!/bin/bash
echo "Content-type: text/html" echo "Content-type: text/html"
echo "" echo ""
echo '<html>'
echo '<head>'
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'
echo '<title>Hello World</title>'
echo '</head>'
echo '<body>'
echo 'Hello, World!' echo 'Hello, World!'
echo '</body>'
echo '</html>'
exit 0 exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment