summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-27 12:28:55 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-27 12:31:41 +0200
commitb4f35dbe44e07b597c3e7bb6d7562757069a7cb4 (patch)
tree88af99a2cca9c514536b4b61785fa67b3543429c /README.md
parentfbda49eea45ce08b9a72744c04761e1556ebd2fa (diff)
feat: moved SOCL into OCL, without SNU's baggage.v1.0.41
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index c7bf8c4..b7790c3 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# SNU Open C++ Library
+# Open C++ Library
[![License: GPL-2.0](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
@@ -21,12 +21,12 @@ A C++ library with additional modules for your C++ SDLC.
int main(int argc, char** argv)
{
- auto opt = snu::opt(snu::eval_eq(50, 50)).expect("snu::eval_eq, does not match!");
- opt = snu::opt(snu::eval_eq(50, 40));
+ auto opt = ocl::opt(ocl::eval_eq(50, 50)).expect("ocl::eval_eq, does not match!");
+ opt = ocl::opt(ocl::eval_eq(50, 40));
opt.expect("this time it doesn't.");
return EXIT_SUCCESS;
}
```
-##### (c) 2025 SNU Systems, Corp.
+##### (c) 2025 Amlal El Mahrouss, licensed under the MIT license.