/gitdemo

Git process testing project

Primary LanguageJava

Title

This is a demo git project.

Goal

Doing git demo test, you can pratice how to fork and PR opensource project.

Demo

Hello world by multiple develop languages.

Bash

$ bash hello.sh 
Hello, Bash

Python

$ python hello.py 
Hello, Python

Go

$ go run hello.go 
Hello, Go

Ruby

$ ruby hello.rb 
Hello, Ruby

Scala

$ scalac hello.scala
$ scala hello
Hello, Scala

C

$ gcc hello.c -o hello.bin
$ ./hello.bin 
Hello, C

Java

$ javac hello.java
$ java hello
Hello, Java