Slide 19
Slide 19 text
GO NORTHWEST 2018
package main
type Item struct {
name string
sellIn, quality int
}
var items = []Item{
Item{"+5 Dexterity Vest", 10, 20},
Item{"Aged Brie", 2, 0},
Item{“Chunky Bacon", 5, 7},
Item{"Sulfuras, Hand of Ragnaros", 0, 80},
Item{"Backstage passes to a TAFKAL80ETC concert", 15, 20},
Item{"Conjured Mana Cake", 3, 6},
}
func main() {
GildedRose()
}
...