diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | test.py | 13 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ca878f1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build/ +rns510.c @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +import rns510 + + +a=rns510.encode("52.2","0.16") + +print a + +b,c=rns510.decode(a) + +print b,",",c + |