SourcePoint AMD Help

Table of Contents

putchar

Display a character in the Command window.

Syntax

putchar(char-expr)

Where:

char-expr

is a quoted character or an expression that evaluates to a character

Discussion

The putchar command displays a character in the Command window.

Example

Command input:

define char cvar = 'a'
putchar(cvar); putchar(cvar+1); putchar('\n')

Result:

ab

Related Topics: