Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Statement Separators
Description
The statement separators in Maple are semicolon (;) and colon (:).
The semicolon is the normal statement separator.
In an interactive Maple session, the result of the statement will not be displayed if the statement is terminated with a colon.
The two statement separators (semicolon and colon) are equivalent in the case of statements nested one or more levels (inside if-statements, do-statements, or procedures).
Statements in 1-D math must be terminated with a semicolon or colon.
Statements in 2-D math may be terminated with a semicolon, but it is not required. If a statement does not end with a semicolon, Maple auto-inserts a semicolon when it parses the statement.
Note: This rule does not apply to statements enclosed in the body of another statement such as an if statement, loop, procedure, module, use statement, or try statement. In these cases, all enclosed statements must be separated by a semicolon or colon.
Important: When exporting a worksheet as Maple Input, your worksheet must contain explicit semicolons and not auto-inserted ones. The resulting exported .mpl file will not run in the Command-line version with auto-inserted semicolons.
Example
one := 0+1:
two := one+1;three:=two+1;
See Also
::, Export as Maple Input, statement
Download Help Document