From d3401f4e1b42ce7fab780062b18c3ca2959edbd0 Mon Sep 17 00:00:00 2001 From: hanemile Date: Fri, 28 Sep 2018 18:20:07 +0200 Subject: imported some missing packets --- force.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/force.go b/force.go index 47bbed3..aac2e8e 100644 --- a/force.go +++ b/force.go @@ -2,11 +2,13 @@ package main import ( "math" + "fmt" + "ioutil" ) // forces_acting calculates the force inbetween the two given stars s1 and s2 // The function return the force -func forces_acting(s1 star, s2 star) force { +func force_acting(s1 star, s2 star) force { // Gravitational constant var G float64 = 6.674 * math.Pow(10, -11) -- cgit 1.4.1