diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-27 14:46:26 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-27 14:47:00 +0200 |
| commit | 0be66c2f14812f192e139f6d24bddc4f574c059d (patch) | |
| tree | b2f70743da944d84add7c6bd99f63562a8c0e33a /README.md | |
| parent | 29a31b73183f97b792d0585dca9a305b083f93d8 (diff) | |
feat: SNU C++ Library (v1.0.0)
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,6 +1,6 @@ -# Amlal's Standard Extended +# SNU C++ Library -[](LICENSE) +[](LICENSE) ## Brief: @@ -8,18 +8,19 @@ A C++ library with additional modules for your C++ SDLC. ## Getting Started: -Here is an example of how astdx::opt works. +Here is an example of how snu::opt works. ```cpp -#include <astdx/opt.hpp> +#include <lib/opt.hpp> int main(int argc, char** argv) { - auto opt = astdx::opt(astdx::eval_eq(50, 50)).expect("astdx::eval_eq, does not match!"); - opt = astdx::opt(astdx::eval_eq(50, 40)); + auto opt = snu::opt(snu::eval_eq(50, 50)).expect("snu::eval_eq, does not match!"); + opt = snu::opt(snu::eval_eq(50, 40)); opt.expect("this time it doesn't."); return 0; } ``` +##### (c) SNU Systems Corp 2025, all rights reserved.
\ No newline at end of file |
