Specify code languages for syntax highlighting
diff --git a/WindowsCrossCompiling.md b/WindowsCrossCompiling.md
index d5191b1..2cbf572 100644
--- a/WindowsCrossCompiling.md
+++ b/WindowsCrossCompiling.md
@@ -4,14 +4,14 @@
 
 First step is to build host version of go:
 
-```
+```sh
 $ cd $GOROOT/src
 $ ./make.bash
 ```
 
 Next you need to build the rest of go compilers and linkers. I have small program to do that:
 
-```
+```sh
 $ cat ~/bin/buildcmd
 #!/bin/sh
 set -e
@@ -25,7 +25,7 @@
 
 Last step is to build windows versions of standard commands and libraries. I have small script for that too:
 
-```
+```sh
 $ cat ~/bin/buildpkg
 #!/bin/sh
 if [ -z "$1" ]; then
@@ -48,7 +48,7 @@
 
 I run it like that:
 
-```
+```sh
 $ ~/bin/buildpkg windows 386
 ```
 
@@ -56,7 +56,7 @@
 
 Now we're ready to build our windows executable:
 
-```
+```go
 $ cat hello.go
 package main