Cours langage GO - annotation - Anthony Le Goff
#INTRO ALGORITHME SOUS GO De l'écriture du premier programme à la logique informatique golang
Premier programme et présentation de "hello world"
| #!/usr/bin/env python | |
| '''Description here''' | |
| import logging | |
| import argparse | |
| def get_options(): | |
| description = '' | |
| parser = argparse.ArgumentParser(description=description) |
| FROM ubuntu:latest | |
| RUN apt-get update -q && apt-get -qy install \ | |
| build-essential pkg-config libc6-dev m4 g++-multilib \ | |
| autoconf libtool ncurses-dev unzip git python \ | |
| zlib1g-dev wget bsdmainutils automake | |
| WORKDIR /root/ | |
| RUN git clone https://github.com/zcash/zcash.git | |
| WORKDIR /root/zcash/ |
Cours langage GO - annotation - Anthony Le Goff
#INTRO ALGORITHME SOUS GO De l'écriture du premier programme à la logique informatique golang
Premier programme et présentation de "hello world"