diff --git a/subjects/binaryaddition/README.md b/subjects/binaryaddition/README.md index 3da71d8b..7cf8516b 100644 --- a/subjects/binaryaddition/README.md +++ b/subjects/binaryaddition/README.md @@ -15,6 +15,8 @@ func BinaryAddition(a int, b int) []int { ### Usage +Here is a possible program to test your function: + ```go package main @@ -41,4 +43,4 @@ $ go run . [0 1 1] [1 0 0] [1 0 1] -``` \ No newline at end of file +```