Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcebular committed Nov 30, 2023
0 parents commit 89f181a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Advent of Code 2023
-------------------

You'll need Apache Groovy 4.x installed.

To run:
groovy dayXX.groovy

To run with arguments:
groovy dayXX.groovy arg1 arg2



Additional requirements:
------------------------

None so far.
5 changes: 5 additions & 0 deletions day00.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
println "Hello, world!";

if (args.size() > 0) {
println "Also hello, ${args[0]}!";
}

0 comments on commit 89f181a

Please sign in to comment.