Created
October 2, 2021 19:56
-
-
Save ryanc414/6de0191d599e323944193b0d45b679ca 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 GetKeyURL(x int) (*url.URL, error) { | |
y := Foo(x)? | |
z := Bar(y)? | |
return Baz(z) | |
} | |
func Foo(x int) (int, error) { | |
... | |
} | |
func Bar(y string) (string, error) { | |
... | |
} | |
func Baz(z string) (*url.URL, error) { | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment