2017 Day 23 Complete

This commit is contained in:
2017-12-23 09:01:32 -06:00
parent d16cc22158
commit 6c4e6ec824
8 changed files with 387 additions and 268 deletions

15
2017/day23/test.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import "fmt"
// Logic before any loops (starting values)
func main() {
var a, b, c int
b = 99
c = b
b = b * 100
b = b + 100000
c = b
c = c + 17000
fmt.Println(a, b, c)
}