Keywords

The following words are treated as keywords in Go, and have special meaning:

RemObjects Go Keywords

As of yet, Gold adds no custom keywords to the Go language

Standard Go Keywords

These standard keywords are defined by the Go language spec and are also all used by RemObjects Go:

  • break
  • case
  • chan
  • const
  • continue
  • default
  • defer
  • else
  • fallthrough
  • false
  • for
  • func
  • go
  • goto
  • if
  • import
  • interface
  • make
  • map
  • new
  • nil
  • package
  • range
  • return
  • select
  • struct
  • switch
  • true
  • type
  • var