Giter Site home page Giter Site logo

goland_formartion's Introduction

Golang Formation

Généralités

go run main.go == go build + ./executable

GOPATH

/go
  |__ /bin
  |__ /pkg
  |__ /src

Contient 3 dossiers. Le /bin correspond aux binaires générés via le go install. Le /pkg correspond aux paquets nécessaires à l'execution du code situé dans /src. Le /src contient tout le code GO qui peut être hiérarchisé en projets, sous-projets, modules, etc.

Variables

  • Possible de déclarer une variable sans valeur d'initialisation
  • Pour une déclaration en dehors d'une fonction, utilisation obligatoire de la syntaxe var toto = X (et non toto := X)
  • Accessibilité d'une variable en fonction de la casse de la première lettre

Fonctions

func sumNamedReturn(x, y, z int) int { }
func sumNamedReturn(x, y, z int) (sum int) { }

Dans le deuxième cas, sum est déclaré au moment de l'execution et on peut ensuite l'utiliser pour lui affecter une valeur dans la méthode

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.