Difference between revisions of "Basic Pascal Tutorial/Introduction"

From Free Pascal wiki
Jump to navigationJump to search
(New page: Introduction (author: Tao Yue, state: unchanged) Welcome to Learn Pascal! This tutorial is a simple, yet complete, introduction to the Pascal programming language. It covers all of the sy...)
 
(bypass redirects [cf. discussion])
(18 intermediate revisions by 8 users not shown)
Line 1: Line 1:
Introduction (author: Tao Yue, state: unchanged)
+
{{Basic_Pascal_Introduction}}
 +
{{TYNavigator|Basic Pascal Tutorial|History}}
 +
 
 +
Introduction (author: Tao Yue, state: negligible changes)
  
 
Welcome to Learn Pascal! This tutorial is a simple, yet complete, introduction to the Pascal programming language. It covers all of the syntax of standard Pascal, including pointers.
 
Welcome to Learn Pascal! This tutorial is a simple, yet complete, introduction to the Pascal programming language. It covers all of the syntax of standard Pascal, including pointers.
 
If you're in a rush to get started, or if you're searching for information on a specific feature of Pascal, you can go directly to the Table of Contents to select any lesson in the tutorial.
 
If you're in a rush to get started, or if you're searching for information on a specific feature of Pascal, you can go directly to the Table of Contents to select any lesson in the tutorial.
  
I have tried to make things are clear as possible. If you don't understand anything, try it in your Pascal compiler and tweak things a bit. Pascal is a syntactically-strict language. This means that if you make a mistake, the compiler will stop and inform you of the error. Except when you're using files, there's practically no way for you to completely screw up your computer.
+
I have tried to make things as clear as possible. If you don't understand something, try it out in your Pascal compiler and tweak things a bit. Pascal is a syntactically-strict language. This means that if you make a mistake, the compiler will stop and inform you of the error. Except when you're using files, there's practically no way for you to completely screw up your computer.
  
If you'd like to go into more depth or learn about topics beyond basic data structures, you can purchase books about Pascal programming from the [http://lazarus-ccr.sourceforge.net/bookstore/index.html online bookstore]. '''This link doesn't seem to work at the moment'''
+
If you'd like to go into more depth or learn about topics beyond basic data structures, you can purchase books and magazines about Pascal programming which are listed in the wiki page [[Pascal and Lazarus Books and Magazines]]
  
To program in Pascal (or any high-level language, for that matter), you will need a compiler. You can use any standard Pascal compiler with this tutorial. If you need to download a compiler, or if you're new to programming altogether and don't know what a compiler does, click here for more information.
+
To program in Pascal (or any high-level language, for that matter), you will need a compiler. You can use any standard Pascal compiler with this tutorial. If you need to download a compiler, or if you're new to programming altogether and don't know what a compiler does, check out the [[Compiler]] page.
  
{|style=color-backgroud="white" cellspacing="20"
+
{{TYNavigator|Basic Pascal Tutorial|History}}
|[[Object_Pascal_Tutorial|previous]] 
 
|[[Contents|contents]]
 
|[[Object_Pascal_History|next]]
 
|}
 

Revision as of 01:04, 6 August 2022

العربية (ar) български (bg) Deutsch (de) English (en) español (es) français (fr) italiano (it) 日本語 (ja) 한국어 (ko) русский (ru) svenska (sv) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

Introduction (author: Tao Yue, state: negligible changes)

Welcome to Learn Pascal! This tutorial is a simple, yet complete, introduction to the Pascal programming language. It covers all of the syntax of standard Pascal, including pointers. If you're in a rush to get started, or if you're searching for information on a specific feature of Pascal, you can go directly to the Table of Contents to select any lesson in the tutorial.

I have tried to make things as clear as possible. If you don't understand something, try it out in your Pascal compiler and tweak things a bit. Pascal is a syntactically-strict language. This means that if you make a mistake, the compiler will stop and inform you of the error. Except when you're using files, there's practically no way for you to completely screw up your computer.

If you'd like to go into more depth or learn about topics beyond basic data structures, you can purchase books and magazines about Pascal programming which are listed in the wiki page Pascal and Lazarus Books and Magazines

To program in Pascal (or any high-level language, for that matter), you will need a compiler. You can use any standard Pascal compiler with this tutorial. If you need to download a compiler, or if you're new to programming altogether and don't know what a compiler does, check out the Compiler page.

 ◄   ▲   ►