pub fn x2(x: isize) -> isize
double the given number. 与えられた数値を2倍にする。
let arg = 5; let answer = ddw_utils::x2(arg); assert_eq!(10, answer);