14 lines
		
	
	
		
			106 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			106 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
)
 | 
						|
 | 
						|
func Sqrt(x float64) float64 {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func main() {
 | 
						|
	fmt.Println(Sqrt(2))
 | 
						|
}
 |