12 lines
84 B
Rust
12 lines
84 B
Rust
|
enum what { }
|
||
|
|
||
|
fn what_to_str(x: what) -> ~str
|
||
|
{
|
||
|
alt x {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main()
|
||
|
{
|
||
|
}
|