Unexpected token here. I don't understand.

 
What's wrong?
Files:
 
In mt5 you have to use input instead of extern
 
amando #:
In mt5 you have to use input instead of extern

i asked this question in mql4(mt4) section...

 
IgorFX Trading #:  What's wrong? i asked this question in mql4(mt4) section...
  1. Never use screenshots of code. Place the code here with the "</>" icon or Alt-S
  2. You are missing a ";" after the double "MyPoint = Point"
    However, "Point" is a function, so you are also missing "()".
    But to make it worse, you should not be using that function to initialise a Input/extern/global variable because it will be undefined at that time.
    In general, global variables and inputs/externs should be initialised to a constant value.
  3. Even though it is MQL4, you should in fact be using modern MQL4+ language practices, which means it is best to use "input" instead of "extern".
Reason: