Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Comments
Description
Single line comments are introduced by a pound character (#, sometimes called a hash, sharp, or number sign character). This character and all that follow it on a line comprise a comment, and are discarded by Maple.
If the pound character is enclosed within a pair of left single quotes (a symbol) or double quotes (a string), then it is not treated as the beginning of a comment.
If the final character of a comment line is a non-escaped backslash, the comment is continued on the next line.
Multiline comments are enclosed in (* and *). Multiline comments are not available in 2-D math.
Maple procedures and modules may also contain a description clause, which is similar to a comment in that its purpose is documentation. However, unlike # comments, the description clause is retained by Maple when the procedure is compiled into Maple's internal form and will be displayed when the procedure is printed.
Examples
Note: When 1-D math input is converted to 2-D math input, all comments are discarded. To view all of the comments in the examples below, you must view the page in 1-D math input. In the View menu, ensure that the Display Examples with 2D Math box is not checked.
p := proc(x) description "Descriptions are retained by Maple."; # Square x. x^2; # Comments are discarded by Maple. end proc;
See Also
backslash, Preprocessor, quotes, string, symbol
Download Help Document