Difference between revisions of "Defer"

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
 
== Example ==
 
== Example ==
  
  package main
+
  [[package]] main
  import "fmt"
+
  [[import]] "fmt"
 
   
 
   
 
  [[func]] main() {
 
  [[func]] main() {

Revision as of 15:57, 21 August 2022


Example

package main
import "fmt"

func main() {
	defer fmt.Println("world")

	fmt.Println("hello")
}

See also

Advertising: