Difference between revisions of "Defer"

From wikieduonline
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
 
== Example ==
 
== Example ==
<pre>
 
package main
 
  
import "fmt"
+
[[package main]]
 
+
[[import]] "fmt"
func main() {
+
defer fmt.Println("world")
+
[[func]] main() {
 
+
defer fmt.Println("world")
fmt.Println("hello")
+
}
+
fmt.Println("hello")
</pre>
+
}
  
 
== See also ==
 
== See also ==
 
* {{Go}}
 
* {{Go}}
* {{flow}}
+
* {{flow control}}
  
 
[[Category:Go]]
 
[[Category:Go]]

Latest revision as of 15:58, 21 August 2022


Example[edit]

package main
import "fmt"

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

	fmt.Println("hello")
}

See also[edit]

Advertising: