Add a short description

This commit is contained in:
Luke Murphy
2020-07-09 10:12:54 +02:00
parent febc6f0fca
commit f52270a43d

View File

@ -4,6 +4,11 @@
## Varints, a method of serializing integers using one or more bytes ## Varints, a method of serializing integers using one or more bytes
> Generally in Python, integers are stored as long meaning that they will use
> at least 32 bits. When storing many numbers which do not require 32 bits,
> this would seem to be significantly wasteful; variable length representation
> should be able to assist in such cases.
## Install ## Install
```sh ```sh