Skip to content

Commit 9a5e745

Browse files
author
eliastor
committed
sample solution exercise 1
1 parent 2e7d80e commit 9a5e745

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

unit1/exercises/e1/main.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
func Sqrt(x float64) float64 {
8+
}
9+
10+
func main() {
11+
fmt.Println(Sqrt(2))
12+
}
13+

0 commit comments

Comments
 (0)