------------------------------------------------------------------------------------------------HELLOW.DPR ------------------------------------------------------------------------------------------------ program HelloW; uses Forms, Main in 'MAIN.PAS' {fmHelloWorld}; {$R *.RES} begin Application.CreateForm(TfmHelloWorld, fmHelloWorld); Application.Run; end. ------------------------------------------------------------------------------------------------MAIN.PAS ------------------------------------------------------------------------------------------------ unit Main.pas; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls, Forms, Dialogs; type TfmHelloWorld = class(TForm) txHelloWorld: TLabel; private { Private declarations } public { Public declarations } end; var fmHelloWorld: TfmHelloWorld; implementation {$R *.DFM} end. ------------------------------------------------------------------------------------------------MAIN.DFM ------------------------------------------------------------------------------------------------ object fmHelloWorld: TfmHelloWorld Left = 200 Top = 99 Width = 435 Height = 300 Caption = 'fmHelloWorld' Font.Color = clWindowText Font.Height = -13 Font.Name = 'System' Font.Style = [] PixelsPerInch = 96 TextHeight = 16 object txHelloWorld: TLabel Left = 115 Top = 70 Width = 77 Height = 16 Caption = 'I am a Ph.D student in Computer Science and Northeastern University in Boston, MA having received my Master's at the University of Colorado at Boulder and BS in Computer Engineering with highest honors at the University of Florida at Gainesville. I have built and helped build various programming language systems including my a language generator for my undergraduate thesis, the AspectJ Programming Language, the Jikes Research Virtual Machine from IBM, and the Concern Manipulation Environment from IBM. I am interested in improving the way in which people write programs and build software; both through teaching and through industrial research. Though much of my past work has involved programming languages and compilers, I have many other skills and can adapt to various tasks to help develop emerging technologies and improve existing ones. ' end end ------------------------------------------------------------------------------------------------