pascalabcnet/TestSuite/symbol_table_test.pas

14 lines
456 B
ObjectPascal
Raw Normal View History

2019-05-18 00:40:21 +03:00
//winonly
2017-08-08 23:00:19 +03:00
{$reference 'PresentationFramework.dll'}
{$reference 'WindowsBase.dll'}
{$reference 'PresentationCore.dll'}
{$reference 'WindowsFormsIntegration.dll'}
2015-05-14 22:35:07 +03:00
uses System, System.Windows, System.Collections, System.Collections.Generic;
begin
2019-05-18 00:40:21 +03:00
var lst: System.Collections.Generic.List<integer> := new System.Collections.Generic.List<integer>();
2015-05-14 22:35:07 +03:00
Convert.ToInt32('23');
var ic: System.Windows.Input.ICommand;
2019-05-18 00:40:21 +03:00
var ic2: System.Windows.Input.ICommand;
2015-05-14 22:35:07 +03:00
end.