• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // The functionality from `lib_a` should be usable within this crate
2 pub use lib_a::{greeting_a, greeting_from};
3 
greeting_b() -> String4 pub fn greeting_b() -> String {
5     greeting_from("lib_b")
6 }
7