Files
mathlogic/lab1/programm/example.txt
2025-04-15 15:46:24 +03:00

35 lines
789 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Описание языка
# Комментарии начинаются с #
# Идентификаторы
abcdefg SomeThing1 _yet_another__id
# Но не больше 16 символов
ThisIdentifierIsTooLong
# И нельзя наичнать с цифры
123NotAllowed
# Комплексные числа в показательной форме
1.5E3 -2E-4 3.0E+2 +2E3.14
2E2E22E2
# Оператор присваивания
:=
# Нельзя дублировать операторы присваивания
:=:= :==
# Арифметические операторы
+ - * / ^
# Скобки
()
# Разделитель выражений
|
# Пример программы
alpha:=2E3.1415|beta:=4E0|theta:=alpha+beta+-3E-1.57
| dzeta := alpha + (2.1E2.1 - 22E2)