From 3ebf1c4ddf62a647fc9e289676954c5f9a36a55d Mon Sep 17 00:00:00 2001 From: Tlekbai Ali Date: Mon, 2 Aug 2021 12:03:30 +0600 Subject: [PATCH] Fix example function call --- subjects/lcm/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/subjects/lcm/README.md b/subjects/lcm/README.md index 27e090b8..4be6741e 100644 --- a/subjects/lcm/README.md +++ b/subjects/lcm/README.md @@ -21,9 +21,14 @@ Here is a possible program to test your function : ```go package main +import ( + "fmt" + "student" +) + func main() { - fmt.Println(Lcm(2, 7)) - fmt.Println(Lcm(0, 4)) + fmt.Println(student.Lcm(2, 7)) + fmt.Println(student.Lcm(0, 4)) } ```