blob: a60dcad802fed8f3f945e75948f7cbdbb2e7a082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* File: example.cpp
* Purpose: Rope example.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
#include <ocl/tproc/rope.hpp>
int main()
{
auto rope = ocl::tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog");
ocl::io::println(rope.data());
}
|