Skip to content

Instantly share code, notes, and snippets.

@sheabunge
Created October 1, 2012 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sheabunge/3810687 to your computer and use it in GitHub Desktop.
Save sheabunge/3810687 to your computer and use it in GitHub Desktop.
How to print or output the text Hello World! in many different languages. Feel free to fork and contribute. http://bungeshea.com/2011/hello-world/
@echo Hello World!
@pause
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!" << endl;
return 0;
}
body:before{
content: "Hello World!";
}
<!DOCTYPE html>
<html>
<head><script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<script type="text/javascript">if (!NREUMQ.f) { NREUMQ.f=function() {
NREUMQ.push(["load",new Date().getTime()]);
var e=document.createElement("script");
e.type="text/javascript";
e.src=(("http:"===document.location.protocol)?"http:":"https:") + "//" +
"d1ros97qkrwjf5.cloudfront.net/42/eum/rum.js";
document.body.appendChild(e);
if(NREUMQ.a)NREUMQ.a();
};
NREUMQ.a=window.onload;window.onload=NREUMQ.f;
};
NREUMQ.push(["nrfj","beacon-3.newrelic.com","5fea191aea","2478111","dVdXRUsJXllcERtQEl8XXlhKEh1HWBQ=",0,89,new Date().getTime(),"","","","",""]);</script></body>
</html>
document.write("Hello World!");
alert("Hello World!");
thread main
TextOut(0, LCD_LINE1, 'Hello World!')
wait SEC_10
endt
task main() {
TextOut(0, LCD_LINE1, "Hello World!");
Wait(1000);
}
<?php
echo "Hello World!";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment