If you try to assign an `INTEGER` literal to a variable of type `REAL`, the program will silently crash. For example: ```pseudo DECLARE Pi : REAL Pi <- 3 // Will cause a silent crash ```
If you try to assign an
INTEGERliteral to a variable of typeREAL, the program will silently crash.For example: