remoo69 / Compiler-Sheesh

Compiler for the self-developed language Sheesh#.
MIT License
2 stars 1 forks source link

data type mismatch in expressions #47

Open jldav1d opened 2 weeks ago

jldav1d commented 2 weeks ago

Expected: Semantic Error Actual: No Error

Code:

sheesh(){
    whole x = 10#
    x = 10 + 1.5#
}