Update README.md

This commit is contained in:
jsrobson10 2020-07-22 15:27:04 +10:00 committed by GitHub
parent 83778d8379
commit 471fbfe42b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -3,12 +3,12 @@
### Links ### Links
- <a href="#overview">Overview</a> - <a href="#overview">Overview</a>
- <a href="#languages">Languages</a>
- <a href="#data-types">Data types</a> - <a href="#data-types">Data types</a>
- <a href="#creating-an-object">Creating an object</a> - <a href="#creating-an-object">Creating an object</a>
- <a href="#arrays">Arrays</a> - <a href="#arrays">Arrays</a>
- <a href="#named-lists">Named lists</a> - <a href="#named-lists">Named lists</a>
- <a href="#saving-classes">Saving classes</a> - <a href="#saving-classes">Saving classes</a>
- <a href="#other-implementations">Other implementations</a>
### Overview ### Overview
@ -19,6 +19,12 @@ be fast and work well on 32-bit systems, but have a maximum size of 2 GB.
BDF allows human readable serialization to see what is going on for debugging BDF allows human readable serialization to see what is going on for debugging
purposes, but it currently can't parse the human readable serialized string to an object. purposes, but it currently can't parse the human readable serialized string to an object.
### Languages
- Java
- <a href="https://github.com/jsrobson10/BdfCpp">C++</a>
### Data types ### Data types
- Boolean - Boolean
@ -256,8 +262,3 @@ hello.hello();
manager.save(); manager.save();
``` ```
### Other implementations
- Java
- <a href="https://github.com/jsrobson10/BdfCpp">C++</a>