Skip to content

Commit 755fd57

Browse files
Addition of the README and basic Groovy source samples.
- Addition of the README.txt file explaining what this repository is all about. - Addition of Groovy sample source. - Addition of sample resource Properties file.
0 parents  commit 755fd57

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

README.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
This is a sample project students can use during Matthew's Git class.
2+
3+
We can have a bit of fun with this repo, knowing that we can always reset it to a known good state. We can apply labels, and branch, then add new code and merge it in to the master branch.
4+
5+
As a quick reminder, this came from one of three locations in either SSH, Git, or HTTPS format:
6+
7+
* [email protected]:matthewmccullough/hellogitworld.git
8+
* git://github.com/matthewmccullough/hellogitworld.git
9+
* https://[email protected]/matthewmccullough/hellogitworld.git
10+
11+
We can, as an example effort, even modify this README and change it as if it were source code for the purposes of the class.

resources/labels.properties

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
app.title=Our App
2+
app.welcome=Welcome to the application
3+
app.goodbye=We hope you enjoyed using our application
4+
cli.usage=This application doesn't use a command line interface

src/Main.groovy

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def name = "Matthew"
2+
3+
println "Hello ${name}"
4+
5+
int programmingPoints = 10
6+
println "${name} has at least ${programmingPoints} programming points."

0 commit comments

Comments
 (0)