this post was submitted on 12 Jul 2023
9 points (90.9% liked)

Rust: Memes

9 readers
1 users here now

Memes

Say Rewrite in Rust one more time, I dare you. I double dare you MF!

founded 1 year ago
MODERATORS
 
pub enum Poll<T> {
    Ready(T),
    Um,
}
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 year ago
pub enum Cow<'a, B> {
  Lowing(&'a B),
  Mooo(B)
}