diff --git a/Contributors/Ashhar/AshDemo.java b/Contributors/Ashhar/AshDemo.java new file mode 100644 index 0000000..ee74b14 --- /dev/null +++ b/Contributors/Ashhar/AshDemo.java @@ -0,0 +1,7 @@ +class AshDemo +{ + public static void main(String args[]) + { + System.out.println("Hey Ashhar :) This is your first Jenkins demo!"); + } +} \ No newline at end of file diff --git a/Contributors/Ashhar/Hello.c b/Contributors/Ashhar/Hello.c new file mode 100644 index 0000000..4c172c1 --- /dev/null +++ b/Contributors/Ashhar/Hello.c @@ -0,0 +1,6 @@ +#include //Pre-processor directive +int main() //main function declaration +{ +printf("Hello World"); //to output the string on a display +return 0; //terminating function +} diff --git a/Contributors/Ashhar/Hello_world.cpp b/Contributors/Ashhar/Hello_world.cpp new file mode 100644 index 0000000..6e7f801 --- /dev/null +++ b/Contributors/Ashhar/Hello_world.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout << "HELLO, WORLD!\n"; + return 0; +} diff --git a/Contributors/Ashhar/hello-kivy.py b/Contributors/Ashhar/hello-kivy.py new file mode 100644 index 0000000..e3ea628 --- /dev/null +++ b/Contributors/Ashhar/hello-kivy.py @@ -0,0 +1,21 @@ +#import kivy module +import kivy +#import kivy App module to create a kivy interface +from kivy.app import App +# import Label Module +from kivy.uix.label import Label + +# version required to run kivy Application +kivy.require('1.11.1') + +#create a class MyKivyApp +class MyKivyApp(App): + + def build(self): + + #return a Label with text Hello World! as a root widget + return Label(text = "Hello Ashhar !👻💻") + +#class MyKivyApp is initialized and run() +# method is called to run the App +MyKivyApp().run()