Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions c++/HELL0W0RLD.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include<Windows.h>
#include<iostream>
//a hello world program that prints with an interval of 2.5 seconds
using namespace std;
int main(){
cout<< " Hello \a";
Sleep(2500);
cout<< " World \a";
//this alerts the system bell
return 0;
}
14 changes: 14 additions & 0 deletions html/hello_world.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<style rel="stylesheet" type="text/css">
body{background-color:#ABCDEF}
h1{font-size: 250; font-family: serif;
color: #012345}
</style>
<h1 align="center"><i>HELLO WORLD</i></h1>
</body>
</html>
5 changes: 5 additions & 0 deletions java/HelloApp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public class HelloApp{
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
14 changes: 12 additions & 2 deletions python/hello_world_in_other_languages.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
language = {"en":"hello world", "tr":"merhaba dünya"}
print(language["tr"])
g = "مرحبا بكم"
language = {"en":"hello world", "tr":"merhaba dünya", "hau":"Barka da Zuwa!"
"ara":g}
print(language["tr"])

#hello world in HAUSA language
print(language["hau"])

#العربية
#بلغة
#hello world in ARABIC language
print(language["ara"])