Skip to content
Open

Vb #175

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
20 changes: 20 additions & 0 deletions Visual Basic/Visual Basic/vb.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Visual Basic", "Visual Basic\Visual Basic.vcxproj", "{D6EEBDF2-A059-49F3-881A-E6ED471779C7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Debug|Win32.ActiveCfg = Debug|Win32
{D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Debug|Win32.Build.0 = Debug|Win32
{D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Release|Win32.ActiveCfg = Release|Win32
{D6EEBDF2-A059-49F3-881A-E6ED471779C7}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
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"])