Google News
logo
Golang - Interview Questions
Write the syntax to create a function in Go programming language?
Syntax to create a function in Go :
 
func function_name( [parameter list] ) [return_types]  
{  
   body of the function  
}
Advertisement