Fix example function call

This commit is contained in:
Tlekbai Ali 2021-08-02 12:03:30 +06:00 committed by GitHub
parent 4646b3c0a5
commit 3ebf1c4ddf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -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))
}
```