Q&A

  • 초기화 선언에서요...
이소스 어떻게 된거죠?

c에서 del로 옮긴지 얼마되지 않았는데 세부사항이 섯깔려서...

() 나 , 혹은 test라는 변수명 무엇이 틀렸지요?



//-------------------------------------------------------------------------

{ 기본 환경 데이타 보관}

unit DataSet;



interface

procedure Initiallize();



type

DataTable2 = record

Mode: Integer;

Voltage: array[0..2] of Single;

end;



var

Test: array[0..1] of DataTable2;



implementation



procedure Initiallize();

begin

Test := ((11,(0,2.5,2.5)),(12,(0,2.5,3.3)));

end;



end.





0  COMMENTS