• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

greeting_from(from: &str) -> String1 pub fn greeting_from(from: &str) -> String {
2     format!("Hello from {from}!")
3 }
4 
greeting_a() -> String5 pub fn greeting_a() -> String {
6     greeting_from("lib_a")
7 }
8