, , , , ,

Go lang - notebook - Jupyter

Voir aussi :

Voir la liste des Kernels pour Jupyter :

podman run -it -p 8888:8888 docker.io/gopherdata/gophernotes

Source : https://github.com/gopherdata/gophernotes

Install NOK sous Debian mais fonctionne en conteneur

Introspection / reflection

Voir :

Utile pour l’introspection :

reflect.TypeOf

import "reflect"
 
reflect.TypeOf(print)
// fast.Builtin
 
reflect.TypeOf(fmt.Println)
// func(...interface {}) (int, error)