Initial commit

This commit is contained in:
2026-01-23 22:15:36 +01:00
commit ca60108606
167 changed files with 5311 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <iostream>
#include <string>
#include "rapidhash.h"
int main() {
std::string text = "Hello, rapidhash.";
std::cout << rapidhash(text.data(), text.size()) << '\n';
return 0;
}