fix: dynamic math table exercise for git bash

This commit is contained in:
Inanc Gumus
2018-11-19 11:11:20 +03:00
committed by GitHub
parent 7549a102f6
commit 924249b547

View File

@ -86,6 +86,21 @@ package main
// 2 0 0 0 2 2
// 3 0 0 1 0 3
// 4 0 0 0 1 0
//
// NOTES:
//
// When running the program in Windows Git Bash, you might need
// to escape the characters like this.
//
// This happens because those characters have special meaning.
//
// Division:
// go run main.go // 4
//
// Multiplication and others:
// (this is also necessary for non-Windows bashes):
//
// go run main.go "*" 4
// ---------------------------------------------------------
func main() {