From 69021ec0e5195a42b0ed4be096cc4b2df3e13d47 Mon Sep 17 00:00:00 2001 From: MaurĂ­cio Antunes Date: Mon, 15 May 2023 22:41:39 -0300 Subject: style: functions should be camelCase --- exercises/functions/functions2/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises/functions/functions2/main.go') diff --git a/exercises/functions/functions2/main.go b/exercises/functions/functions2/main.go index d3dab80..a8ab96e 100644 --- a/exercises/functions/functions2/main.go +++ b/exercises/functions/functions2/main.go @@ -7,10 +7,10 @@ package main import "fmt" func main() { - call_me(10) + callMe(10) } -func call_me(num) { +func callMe(num) { for n := 0; n <= num; n++ { fmt.Printf("Num is %d\n", n) } -- cgit v1.2.3-70-g09d2