reading My first Pascal program December 28, 2023 by 陳怡萱 No Comments Today I just came to learn some Pascal language, because most of the books I bought were written in Pascal, so I can only try to learn a little! Hello World! 1 program exl_2; 2 begin 3 write('Hello World! '); 4 end.Copy the code