This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Kind<T> { | |
type Make; | |
} | |
enum OptionKind {} | |
impl<T> Kind<T> for OptionKind { | |
type Make = Option<T>; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Kind<T> { | |
type Make; | |
} | |
enum OptionKind {} | |
impl<T> Kind<T> for OptionKind { | |
type Make = Option<T>; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loop { | |
for message in client.incoming_messages() { | |
match message.unwrap() { | |
OwnedMessage::Text(data) => data, | |
_ => None, | |
}; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Memory = Vec<u64>; | |
enum Instr{ | |
Call(Rvalue), // call *arg1 | |
Jmp(Rvalue), // jmp *arg1 | |
Print(Rvalue), // print *arg1 | |
} | |
enum Lvalue{ | |
Reg(Reg), |