diff --git a/cake_or_death.go b/cake_or_death.go new file mode 100644 index 0000000..ad1c667 --- /dev/null +++ b/cake_or_death.go @@ -0,0 +1,5 @@ +package c + +func CakeOrDeath() string { + return "cake, please" +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..14e5703 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/liggitt/c + +go 1.12