Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 208 Bytes

Eidi.md

File metadata and controls

17 lines (13 loc) · 208 Bytes

I asked if you like edge cases

Increment

Int x = 0; x = x++; x is 0

Int x = 0; x = ++x; x is 1

int x = 1; int y = 2; int z = x++ + --y; z is 2

Casting