TIL - Go Language - 1

1427 ワード

久しぶりにPostingしました
最近行われているプロジェクトのウェブサイトが発売されたので、油断しました、ほほほ.
Go言語とBlockchainテクノロジーを組み合わせて学習します.
NomadCoderの講義を通してNomadCoinが講義を学ぶ
https://nomadcoders.co/nomadcoin
Solidity、Rust、Go言語を学び、スマート契約を処理し、発展させます.
本格的にGo言語レッスンを開始します.
! Go言語
굉장히 직관적인 코드 구성
try/catch 문이 없음
라이브러리 의존도가 낮음 ex) pip install pandas, npm express, ... 등
linting이 내장이라 코드를 더 퀄리티 있게 지원
  • package.jsonロールを持つgo mod
  • を生成
    go mod init github.com/Ferv0r2/TIL/tree/master/Go
  • Hello World出力
  • package main
    
    import "fmt"
    
    func main() {
    	fmt.Println("Hello World")
    }

    HelloworldはこれからのGo言語を出力して楽しく話しましょう!