File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments