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
1 change: 1 addition & 0 deletions hello.World.c++
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cout("Hello")
9 changes: 9 additions & 0 deletions hello.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <stdio.h>

int main {

printf("Hello world")

return 0;

}
3 changes: 3 additions & 0 deletions hello.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
main() {
print("Hello, World!");
}
1 change: 1 addition & 0 deletions hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello world")
1 change: 1 addition & 0 deletions hello.python3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello world and python is awesoeme")
6 changes: 6 additions & 0 deletions hello.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
enum Gretting:String, CaseIterable {
case hello = "Hello World"
case goodMorning = "Good Morning"
}

Gretting.allCases.forEach({print($0.rawValue)})
4 changes: 4 additions & 0 deletions helloWorld.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
main {
print("Hello")

}
1 change: 1 addition & 0 deletions helloWorld.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello world in Swift")
8 changes: 8 additions & 0 deletions hello_world_shrutika43.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<("hello world!");
return 0;
}