Browse Source

Fix example function call

pull/816/head
Tlekbai Ali 3 years ago committed by GitHub
parent
commit
3ebf1c4ddf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      subjects/lcm/README.md

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

Loading…
Cancel
Save