Skip to content

Commit 54a22f3

Browse files
committed
scratch: some edits
Adding some stuff. Change-Id: Iab6bca276286893a101569384e07b36cc565384f Reviewed-on: https://go-review.googlesource.com/c/scratch/+/403681 Reviewed-by: Than McIntosh <[email protected]>
1 parent 2d28541 commit 54a22f3

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

Diff for: thanm/main.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Copyright 2022 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package main
6+
7+
func quote1() {
8+
println("Obfuscate the pancakes!")
9+
println()
10+
}
11+
12+
func quote2() {
13+
println("From the label of a secure disk: Nemo me impune accessit")
14+
println()
15+
}
16+
17+
func quote3() {
18+
println("MY SENSORS INDICATE TRACE AMOUNTS OF CHOCOLATE IN THE PANTRY. PLEASE LOAD")
19+
println("SOME IN MY SCOOP FOR ANALYSIS.")
20+
println("No, you'll spoil your appetite.")
21+
println("MY MISSION MUST NOT FAIL. PREPARE FOR ANNIHILATION, PITIFUL EARTH FEMALE.")
22+
println()
23+
}
24+
25+
func quote4() {
26+
println("Never send a bunny to do a duck's job.")
27+
println()
28+
}
29+
30+
func main() {
31+
quote1()
32+
quote2()
33+
quote3()
34+
quote4()
35+
}

0 commit comments

Comments
 (0)