Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This commit is for hacktoberFest 2021 #126

Open
wants to merge 1 commit into
base: master
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
7 changes: 7 additions & 0 deletions Contributors/Ashhar/AshDemo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class AshDemo
{
public static void main(String args[])
{
System.out.println("Hey Ashhar :) This is your first Jenkins demo!");
}
}
6 changes: 6 additions & 0 deletions Contributors/Ashhar/Hello.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include<stdio.h> //Pre-processor directive
int main() //main function declaration
{
printf("Hello World"); //to output the string on a display
return 0; //terminating function
}
8 changes: 8 additions & 0 deletions Contributors/Ashhar/Hello_world.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;

int main()
{
cout << "HELLO, WORLD!\n";
return 0;
}
21 changes: 21 additions & 0 deletions Contributors/Ashhar/hello-kivy.py
Original file line number Diff line number Diff line change
@@ -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()