erent rpc system that has
> the expressivity you need. e.g. with grpc you could have a method that
> returns a stream. Cap'n Proto is capable of capturing this kind of thing
> as well.
>
> Quoting Ricky (2018-11-04 14:22:11)
> >I am sorry I wasn't very forthcoming in the
nsubscribe from this group and stop receiving emails from it, send
>>> an email to golang-nuts...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>> --
>>T o mM i t c h e l l
>>
> --
>
I have a rather simple request - I am not sure if this already exists but
I'd like to avoid typing "\n" everytime I do Printf( ) even though I quite
enjoy doing that. Is there an inbuilt library function that does this?
Thanks
Anirudh
--
You received this message because you are subscribed to
UDP Server's code:
package main
import (
"fmt"
"net"
)
func main() {
listener, err := net.ListenUDP("udp", &net.UDPAddr{IP:
net.ParseIP("127.0.0.1"), Port: 9981})
if err != nil {
fmt.Println(err)
return
}
fmt.Printf("Local: <%s> \n", listener.LocalAddr().String())