blob: ee18b56ca3d62d0356f77cf1effd1ae18a0ca04b [file] [log] [blame]
Jono Gouldb252a912018-06-07 19:13:16 +01001// Copyright 2018 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
5package main
6
7import (
8 "fmt"
9)
10
11func main() {
12 fmt.Println("Hello, from London 🇬🇧")
13}