from lpython import i8, i16, i32, i64 def test_i8(): i: i8 i = i8(5) print(i) def test_i16(): i: i16 i = i16(4) print(i) def test_i32(): i: i32 i = 3 print(i) def test_i64(): i: i64 i = i64(2) print(i)