Integer data types

This test case it part of the test suite proposed for new devices.

Test case ID: R1008
Language: ST

Code:
tests2/t1008.st
PROGRAM T1001 
   VAR 

   X1:INT;
  
  END_VAR

   X1 :=1;
   X1 := X1 + 2;
   _GEB_ASSERT_(X1 = 3);

END_PROGRAM