We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5413258 commit 65d567cCopy full SHA for 65d567c
.DS_Store
0 Bytes
Completed Code/objects/main.go
@@ -0,0 +1,38 @@
1
+package main
2
+
3
+import "fmt"
4
5
+type Rectangle struct {
6
+ x1, y1 float64
7
+ width, height float64
8
+ rotation float64
9
+}
10
11
+type Circle struct {
12
+ x1, y1 float64 //center
13
+ radius float64
14
15
16
+func Area(r Rectangle) float64 { //copy of input rectangle is created
17
+ r.height = 0.0
18
+ r.width = 0.0
19
+ return r.height * r.width
20
+ //copy destroyed
21
22
23
+func CreateNewCircle(x, y, r float64) Circle {
24
+ var c Circle
25
26
+ c.x1 = x
27
+ c.y1 = y
28
+ c.radius = r
29
+ return c
30
31
32
+func main() {
33
+ var r Rectangle
34
+ r.width = 3.0
35
+ r.height = 5.0
36
+ fmt.Println(Area(r))
37
+ fmt.Println(r.width, r.height)
38
Completed Code/objects/objects
1.84 MB
0 commit comments