diff --git a/hello.World.c++ b/hello.World.c++ new file mode 100644 index 0000000..90ab37a --- /dev/null +++ b/hello.World.c++ @@ -0,0 +1 @@ +cout("Hello") diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..2f3c1bf --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include + +int main { + + printf("Hello world") + + return 0; + +} diff --git a/hello.dart b/hello.dart new file mode 100644 index 0000000..800db1c --- /dev/null +++ b/hello.dart @@ -0,0 +1,3 @@ +main() { + print("Hello, World!"); +} diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..44159b3 --- /dev/null +++ b/hello.py @@ -0,0 +1 @@ +print("Hello world") diff --git a/hello.python3 b/hello.python3 new file mode 100644 index 0000000..fec4b7a --- /dev/null +++ b/hello.python3 @@ -0,0 +1 @@ +print("Hello world and python is awesoeme") diff --git a/hello.swift b/hello.swift new file mode 100644 index 0000000..58d1c87 --- /dev/null +++ b/hello.swift @@ -0,0 +1,6 @@ +enum Gretting:String, CaseIterable { + case hello = "Hello World" + case goodMorning = "Good Morning" +} + +Gretting.allCases.forEach({print($0.rawValue)}) diff --git a/helloWorld.dart b/helloWorld.dart new file mode 100644 index 0000000..b8021b0 --- /dev/null +++ b/helloWorld.dart @@ -0,0 +1,4 @@ +main { +print("Hello") + +} diff --git a/helloWorld.swift b/helloWorld.swift new file mode 100644 index 0000000..55b1747 --- /dev/null +++ b/helloWorld.swift @@ -0,0 +1 @@ +print("Hello world in Swift") diff --git a/hello_world_shrutika43.cpp b/hello_world_shrutika43.cpp new file mode 100644 index 0000000..f453e74 --- /dev/null +++ b/hello_world_shrutika43.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; +int main() +{ + cout<<("hello world!"); + return 0; +} +