Skip to content
This repository has been archived by the owner on Oct 2, 2022. It is now read-only.

Added Hello World in Type Script #34

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
4 changes: 4 additions & 0 deletions C/Madhura_Hello_World.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#include <stdio.h>
int main(){
printf("Hello World");
}
1 change: 1 addition & 0 deletions Java Script/Madhura_Hello_World.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello World");
1 change: 1 addition & 0 deletions TypeScript/Madhura_TypeScript.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello World");
12 changes: 12 additions & 0 deletions html/Madhura_Hello_World.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>