프로그래밍/Pascal
Pascal 언어로 작성헤본 Hello 예제
Scripter
2012. 1. 21. 08:41
컴피일은 Free Pascal 컴파일러(fpc)를 이용합니다.
Free Pascal 2.6.0 이 2011년 12월 31일에 출시되었습니다.
(******************************************)
(* Filename: hello.pas *)
(* *)
(* Compile: fpc hello.pas *)
(* Execute: hello *)
(******************************************)
program HelloWorld;
begin
writeln('Hello, world!');
writeln('안녕하세요?');
(* readln; *)
end.
Free Pascal 2.6.0 이 2011년 12월 31일에 출시되었습니다.