scott created page: JoeyLib Data Types

Scott Duensing 2018-09-06 00:33:08 +00:00
parent da55a91c65
commit 56106fdeff

5
JoeyLib-Data-Types.md Normal file

@ -0,0 +1,5 @@
#### bool
A boolean data type is provided for systems lacking them. Also provided are `true` and `false` values.
#### byte
Unsigned 8 bit data type. When working with 8 bit data in JoeyLib, use the `byte` type where possible. Only use `char` if you explicitly mean for characters/text to be stored.