Guest User

Untitled

a guest
Feb 3rd, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.17 KB | None | 0 0
  1. template testTempl(a, b: int16) = echo sizeOf(a shl b)
  2. proc testProc(a, b: int16) = echo sizeOf(a shl b)
  3.  
  4. testTempl(int8(1), int16(1)) # 1
  5. testProc(int8(1), int16(1))  # 2
Add Comment
Please, Sign In to add comment