diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-31 13:25:30 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-31 13:25:34 +0200 |
| commit | f85c4ecaea1efe3591ea3eb340a3d3468c71d98b (patch) | |
| tree | 5e613649d135978df5416df8ecb3174c7e4ba13b | |
| parent | 67ab14c72982fbd806b363a581b2b5518269a552 (diff) | |
meta: update README with a brief and better code snippet.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | README.md (renamed from ReadMe.md) | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,6 +2,10 @@ [](LICENSE) +## Brief: + +A C++ library with additional modules for your C++ SDLC. + ## Getting Started: Here is an example of how astdx::opt works. @@ -11,7 +15,7 @@ Here is an example of how astdx::opt works. int main(int argc, char** argv) { - auto opt = astdx::opt(astdx::eval_eq(50, 50)).expect("stdex::eval_eq, does not match!"); + auto opt = astdx::opt(astdx::eval_eq(50, 50)).expect("astdx::eval_eq, does not match!"); opt = astdx::opt(astdx::eval_eq(50, 40)); opt.expect("this time it doesn't."); @@ -19,4 +23,3 @@ int main(int argc, char** argv) } ``` -# Licensed under GPL-2 |
