austin@programming.devM to Golang@programming.devEnglish · 1 year agoGo’s best-kept secret: executable examplesbitfieldconsulting.comexternal-linkmessage-square5fedilinkarrow-up122arrow-down12cross-posted to: golang@lemmy.ml
arrow-up120arrow-down1external-linkGo’s best-kept secret: executable examplesbitfieldconsulting.comaustin@programming.devM to Golang@programming.devEnglish · 1 year agomessage-square5fedilinkcross-posted to: golang@lemmy.ml
minus-squaremorgenlinkfedilinkEnglisharrow-up4·1 year agoI have not seen this before. Thanks for sharing. Do you know any projects that utilize this, so I can see an example implementation of this?
minus-squareRandomDevOpsDude@programming.devMlinkfedilinkEnglisharrow-up2·1 year agoExampleEcho going to func Echo doc Example (and many more)
minus-squareOliver Lowe@lemmy.sdf.orglinkfedilinkEnglisharrow-up2·1 year ago Do you know any projects that utilize this, so I can see an example implementation of this? The sort package in the standard library uses testable examples (source code).
minus-squareaustin@programming.devOPMlinkfedilinkEnglisharrow-up1·1 year agoThe go stdlib uses it a lot. For example, the strings package
I have not seen this before. Thanks for sharing. Do you know any projects that utilize this, so I can see an example implementation of this?
ExampleEcho
going to
func Echo
doc Example(and many more)
The sort package in the standard library uses testable examples (source code).
The go stdlib uses it a lot. For example, the strings package