create rust implementation

This commit is contained in:
Quinn
2025-04-12 20:43:21 +02:00
committed by Quinn
parent 1a3f555fca
commit 87117931f7
3 changed files with 49 additions and 7 deletions

View File

@@ -1,8 +1,9 @@
#include <stdio.h>
#include "error.h"
extern char const* get_str(void);
extern void test(void);
int main(int argc, char** argv) {
(void)argc, (void)argv;
printf("%s\n", get_str());
test();
debug("owo");
}