Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions solutions/go/party-robot/1/party_robot.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package partyrobot

import "fmt"

// Welcome greets a person by name.
func Welcome(name string) string {
s := fmt.Sprintf("Welcome to my party, %s!", name)
return s
}

// HappyBirthday wishes happy birthday to the birthday person and exclaims their age.
func HappyBirthday(name string, age int) string {
s := fmt.Sprintf("Happy birthday %s! You are now %d years old!", name, age)
return s
}

// AssignTable assigns a table to each guest.
func AssignTable(name string, table int, neighbor, direction string, distance float64) string {
s := fmt.Sprintf("Welcome to my party, %s!\nYou have been assigned to table %03d. Your table is %s, exactly %.1f meters from here.\nYou will be sitting next to %s.", name, table, direction, distance, neighbor)
return s
}