Created
January 24, 2023 12:17
-
-
Save arriqaaq/379ba6bcd82f451510780de90d428eef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func main() { | |
| person := NewPersonBuilder(). | |
| WithName("John"). | |
| WithAge(25). | |
| WithAddress("123 Main St"). | |
| WithPhone("555-555-5555"). | |
| WithEmail("john@example.com"). | |
| Build() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment