This repository was archived by the owner on Jan 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
0 parents
commit 755fd57
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
||
* [email protected]:matthewmccullough/hellogitworld.git | ||
* git://github.com/matthewmccullough/hellogitworld.git | ||
* https://[email protected]/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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |