bye.go 源码
阅读全文
go Instalación Linux (Ubuntu)
Instalación Linux (Ubuntu) Si quieres usar snap puedes instalar Go facilmente con este comando: sudo snap install go --classic Sino, puedes seguir los siguientes pasos 1. Actualiza los paquetes locale
阅读全文
go Instalación Windows
Instalación Windows NOTA Si tienes el administrador de paquetes chocolatey.org puedes instalar Go facilmente con este comando: choco install golang 1. Instala el editor Visual Studio Code Instálalo pe
阅读全文
go Instalación OSX
Instalación OSX NOTA Si tienes homebrew instalado, puedes instalar Go facilmente de la siguiente forma: # si no tienes git instalado instálalo asi brew install git # despues instala go brew install go
阅读全文
go What's the result of the expression?
What's the result of the expression? 5 - 2 * 5 + 7 2 CORRECT 22 -19 36 -12 What's the result of the expression? 5 - (2 * 5) + 7 2 CORRECT 22 -19 36 -12 1: The expression can also be: 5 + (2 * 5) + 7 W
阅读全文
go Which expression increases `n` by 1?
Which expression increases n by 1? var n float64 n = +1 n = n++ n = n + 1 CORRECT ++n 1: This just assigns 1 to n. 2: IncDec statement can't be used as an operator. 4: Go doesn't support prefix incdec
阅读全文
go Which group of operators below is arithmetic operators?
Which group of operators below is arithmetic operators? **, /, ^, !, ++, -- *, /, %, +, - CORRECT &, |, +, -, / Which value below you can use with a remainder operator? 3.54 true 57 CORRECT "Try M
阅读全文
go main
main.go 源码
阅读全文
go main
main.go 源码
阅读全文
go main
main.go 源码
阅读全文