This github/linguist#1 and #1 'is' surprising.
And so 'is' this.##Code like `foo` enclosed in 'backquotes':
```py
deffib(n): # write Fibonacci series up to n
a, b = 0, 1while b < n:
print b,
a, b = b, a+b
# Now call the function we just defined:
fib(2000)
```