Guest User

Untitled

a guest
Apr 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. fn f<A, B>(x: A) -> B {
  2. f(x)
  3. }
  4.  
  5. fn main() {
  6. let x: f32 = f(3);
  7. println!("x = {}", x);
  8. }
Add Comment
Please, Sign In to add comment