fork download
  1. fn main() {
  2. let strVar : &'static str = "str";
  3. let stringVar : String = "String".to_string(); // precisa converter o tipo
  4. teste(strVar);
  5. teste(&stringVar);
  6. }
  7.  
  8. fn teste(texto: &str) {
  9. println!("Isto é um {}", texto);
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/485812/101
Success #stdin #stdout 0s 4652KB
stdin
Standard input is empty
stdout
Isto é um str
Isto é um String