Skip to content

braydonpettit/hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 

Repository files navigation

Hello World

A collection of "Hello World" examples in different programming languages.

HTML

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Hello World</title>
</head>

<body>
  <h1>Hello World</h1>
</body>

</html>

CSS

body::before {
    content: "Hello World";
}

PHP

<?php
echo "Hello World";
?>
<?php
print "Hello World";
?>

JavaScript

console.log("Hello World");
alert("Hello World");

Python

print("Hello World")

Bash

echo "Hello World"

PowerShell

Write-Output "Hello World"

MySQL

SELECT 'Hello World';

About

A collection of 'Hello World' examples in different programming languages.

Resources

Stars

Watchers

Forks