51 items
Unused Import Rejected by Go
Code QuizBasic Program Structure
QuizPrinting With fmt
QuizComments in Go
QuizBasic Data Types
QuizCode Formatting With gofmt
QuizCompiled vs Interpreted
QuizType Inference
QuizZero Values
QuizGo's Origins
QuizStatic Typing
QuizWhat Go Is
QuizProgram Entry Point
QuizRunning Go Programs
QuizDeclaring Variables
QuizExported Identifiers
QuizSemicolons in Go
QuizConstants in Go
QuizBroken Comment Syntax
Code QuizImporting the Right Package
Code QuizCalling an Unexported Function
Code QuizPrintf Format Verb Mismatch
Code QuizPackage Declaration for Runnable Program
Code QuizAssigning to a Constant
Code QuizThe Entry Point Function
Code QuizDeclaring a Variable with var
Code QuizBoolean Value Assigned as String
Code QuizType Inference Gone Wrong
Code QuizShort Declaration Outside a Function
Code QuizAssuming the Wrong Zero Value
Code QuizInteger Division Surprise
Code QuizMissing Numeric Conversion
Code QuizConcatenating a String and a Number
Code QuizPrinting Output with fmt
FlashcardCase-Based Visibility
FlashcardStructure of a Basic Go Program
FlashcardWhat Go Is and Its Origins
FlashcardGarbage Collection in Go
FlashcardKey Design Goals of Go
FlashcardCompiled vs Interpreted
FlashcardPackage Declaration and package main
FlashcardStatically Typed Language
FlashcardImport Statements and Standard Library
FlashcardGo File Naming and .go Extension
FlashcardComments in Go
Flashcardgofmt and Standard Formatting
FlashcardThe func Keyword
FlashcardRunning Code with go run
FlashcardBuilding Executables with go build
FlashcardGo Modules and go.mod
FlashcardSemicolon Insertion Rules
FlashcardPrinting Output with fmt
The fmt package provides functions to print and format output.
How do you print output in Go?