Skip to content

Commit

Permalink
Update and rename README.txt to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cppLawyer committed Jun 6, 2022
1 parent 03a8497 commit e372960
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.txt → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,20 @@ safe::sQueue<YOUR_DATA_TYPE> Given_Name;

Example:

```
#include <iostream>
#include "safeQueue.h"
int main(){
safe::sQueue<int> example;
example.front();
example.empty();
example.push(5);
example.pop();
example.sizeQ();
return 0;
}
```

0 comments on commit e372960

Please sign in to comment.