diff options
author | antirez <antirez@gmail.com> | 2014-02-06 17:01:43 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-06 17:01:43 +0100 |
commit | 616150d1144e955efa294a4ceb4de4913f77a203 (patch) | |
tree | c8a53b44bbefeb8ad85163c6e425fdda60addbd9 | |
parent | 2ac40d2902104532297ba03e719b3c0670535f12 (diff) | |
download | sds-616150d1144e955efa294a4ceb4de4913f77a203.tar.xz |
README: Add C highlight in example it was missing.
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -109,11 +109,13 @@ program holds an SDS string and not a C string, however this is not mandatory. This is the simplest SDS program you can write that does something: + ```c sds mystring = sdsnew("Hello World!"); printf("%s\n", mystring); sdsfree(mystring); output> Hello World! + ``` The above small program already shows a few important things about SDS: |