Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 3rd, 2012  |  syntax: None  |  size: 0.12 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. var anytype x;
  2. var integer i;
  3.  
  4. x.integer := 23;
  5. x.float   := 1.0;
  6.  
  7. i := x.integer // <-- Fehler
  8. i := float2int(x.float);