Skip to content
This repository has been archived by the owner on Jan 24, 2020. It is now read-only.

Commit

Permalink
Addition of the README and basic Groovy source samples.
Browse files Browse the repository at this point in the history
- Addition of the README.txt file explaining what this repository is all about.
- Addition of Groovy sample source.
- Addition of sample resource Properties file.
  • Loading branch information
matthewmccullough committed Apr 18, 2011
0 parents commit 755fd57
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
This is a sample project students can use during Matthew's Git class.

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.

As a quick reminder, this came from one of three locations in either SSH, Git, or HTTPS format:

* git@github.com:matthewmccullough/hellogitworld.git
* git://github.com/matthewmccullough/hellogitworld.git
* https://matthewmccullough@github.com/matthewmccullough/hellogitworld.git

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.
4 changes: 4 additions & 0 deletions resources/labels.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
app.title=Our App
app.welcome=Welcome to the application
app.goodbye=We hope you enjoyed using our application
cli.usage=This application doesn't use a command line interface
6 changes: 6 additions & 0 deletions src/Main.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def name = "Matthew"

println "Hello ${name}"

int programmingPoints = 10
println "${name} has at least ${programmingPoints} programming points."

0 comments on commit 755fd57

Please sign in to comment.