имя пакета в имени задач планировщика.

This commit is contained in:
2025-03-13 20:10:28 +03:00
parent 4ce7190905
commit 8fc70d48ad
9 changed files with 26 additions and 14 deletions

View File

@@ -23,6 +23,7 @@ public:
String(int s) { body = to_string(s); }
String(long s) { body = to_string(s); }
String(long long s) { body = to_string(s); }
String (string s){ body = s;}
void println() const { printf("[%s]\n", body.c_str()); }
void addChar(char c) { body += c; }