Skip to content

apmath-web/credit-go

Repository files navigation

credit-go

Credit API on Go lang

/*
Just an example how you should implement an interface
*/

type Person struct {
    firstName, lastName string
}

func (p Person) Person(firstName string, lastName string) {
    p.firstName = firstName
    p.lastName = lastName
}

func (p Person) GetFirstName() string {
    return p.firstName
}

func (p Person) GetLastName() string {
    return p.lastName
}

About

Credit API on Go lang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •