Skip to content

Instantly share code, notes, and snippets.

View xjunko's full-sized avatar
😡
:trollface:

Junko xjunko

😡
:trollface:
View GitHub Profile
@xjunko
xjunko / markov.rs
Created September 18, 2025 20:19
A simple markov text generator written in Rust.
use std::collections::HashMap;
use rand::Rng;
use regex::Regex;
const BEGIN: &str = "___BEGIN__";
const END: &str = "___END__";
const STATE_SIZE: usize = 2;