Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Printer:-Comment - display comment line in printed output
Calling Sequence
Printer:-Comment(s)
Parameters
Printer
-
Printer module
s
string to be printed as comment
Description
The procedure Comment, when used as an argument to a Print call, indicates that s should be printed as a source-code comment in the generated output.
It is frequently useful to print source-code comments in the output generated by a custom CodeGeneration translator. This is especially true when there is no exact equivalent for a Maple expression in the target language, so details about the original object would be otherwise lost in the generated output.
Note that any comments present in the Maple input do not appear as comments in the generated output, as the Maple interpreter ignores them. Thus, no comments appear in the generated output unless they are explicitly printed by a translator.
The format of a block of comment text is controlled by the language attribute "Comment". The language attribute "Comment_FormatEachLine" specifies whether each line of a multi-line comments should be formatted as a separate comment.
Examples
The following defines an extension of C that prints a comment after every if statement.
LanguageDefinition[Define]("CommentExample", extend = "C", SetLanguageAttribute( "If_Begin" = proc(x) (Printer:-Indent(), "if (",x,")\n", Printer:-Comment("This is a comment.\n")) end proc ) ):
p1 := proc(x) if x=0 then return(1) else return(2) end if; end proc:
int p1 (int x) { if (x == 0) // This is a comment. return(1); else return(2); }
See Also
Language Attributes, Print, Printer
Download Help Document
Copyright © MathResources Inc. All Rights Reserved.
www.mathresources.com