1

add string demo

This commit is contained in:
2022-07-24 01:35:34 +02:00
parent 281228b6be
commit adae600809
3 changed files with 75 additions and 1 deletions

View File

@ -0,0 +1,16 @@
#ifndef __StringDemo_include__
#define __StringDemo_include__
#include "kernel/Globals.h"
class StringDemo : public Thread {
private:
StringDemo(const StringDemo& copy) = delete;
public:
StringDemo() : Thread("StringDemo") {}
void run() override;
};
#endif