Skip to content

Commit 791c6cb

Browse files
authored
Update README.md
1 parent 48273be commit 791c6cb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ ZWarning(@"Simple Warning");
1919
ZInfo(@"Just simple info");
2020
ZDebug(@"Everything is OK");
2121
ZFile(@"Simple message write to file");
22+
23+
ZError(@"Something has go wrong with address %p",self);
24+
ZWarning(@"Warning----%d----%@----%p",12,@"msg",self);
25+
26+
int a = 12;
27+
int b = 25;
28+
ZDebug(@"%d + %d = %d",a,b,(a+b));
2229
```
2330
# Output
2431
* Error ----- ❌

0 commit comments

Comments
 (0)