diff options
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go index b71f38d..b6c0aeb 100644 --- a/main.go +++ b/main.go @@ -18,5 +18,5 @@ func main() { fmt.Println(starsSlice) // Calculate the forces acting inbetween all the stars in the starsSlice slice and star nr 0 in the starsSlice slice - fmt.Println(forces.Forces(starsSlice, 0)) + fmt.Println(forces.CalcAllForces(starsSlice)) } |