|
You are here |
dave.cheney.net | ||
| | | | |
golangtutorials.blogspot.com
|
|
| | | | | Other topics in this series - Table of Contents Good code should also be maintainable. If code follows a standard format for writing it be... | |
| | | | |
luketic.de
|
|
| | | | | Dart vs Go Dartlang vs Golang HTTP performance A simple test server.dart import 'dart:io'; void main() { HttpServer.bind('localhost', 8080).then((server) { server.listen((request) { request.response.write('Hello World'); request.response.close(); }); }); } 1 2 3 4 5 6 7 8 9 10 import 'dart:io' ; void main ( ) { HttpServer . bind ( 'localhost' , 8080 ... | |
| | | | |
masnun.com
|
|
| | | | | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...] | |
| | | | |
markphelps.me
|
|
| | | Mark Phelps' blog | ||