אז משרד החינוך הוסיף לנו שפה חדשה בהתראה מאוד קצרה: Pascal.
- מדריך בויקיפדיה
- מדריך באנגלית
- קומפיילר אינטרנטי: כאן או כאן
- מדריך בויקיפדיה
- מדריך באנגלית
- קומפיילר אינטרנטי: כאן או כאן
סינטקס:
Syntax
pascal:
חשוב להדגיש שפסקל לא מבחינה בין אותיות גדולות לקטנות!
Settings
variabels
Exampels:
type
days, age = integer;
yes, true = boolean;
name, city = string;
fees, expenses = real;
Now, the types so defined
can be used in variable declarations −
var
weekdays, holidays : days;
choice: yes;
student_name, emp_name : name;
capital: city;
cost: expenses;