summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-27 14:46:26 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-27 14:47:00 +0200
commit0be66c2f14812f192e139f6d24bddc4f574c059d (patch)
treeb2f70743da944d84add7c6bd99f63562a8c0e33a /README.md
parent29a31b73183f97b792d0585dca9a305b083f93d8 (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.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/README.md b/README.md
index 8cc6e76..1fb3247 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# Amlal's Standard Extended
+# SNU C++ Library
-[![License: GPL-2.0](https://img.shields.io/badge/license-GPL--2.0-blue.svg)](LICENSE)
+[![License: GPL-2.0](https://img.shields.io/badge/license-MIT-blue.svg)](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