How to resolve the algorithm Terminal control/Display an extended character step by step in the Action! programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Terminal control/Display an extended character step by step in the Action! programming language

Table of Contents

Problem Statement

Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Terminal control/Display an extended character step by step in the Action! programming language

Source code in the action! programming language

PROC Main()
  BYTE CHBAS=$02F4 ;Character Base Register

  CHBAS=$CC ;set the international character set
  Position(2,2)
  Put(8) ;print the GBP currency sign
RETURN

  

You may also check:How to resolve the algorithm Death Star step by step in the VBScript programming language
You may also check:How to resolve the algorithm Generate lower case ASCII alphabet step by step in the PL/SQL programming language
You may also check:How to resolve the algorithm Logical operations step by step in the NetRexx programming language
You may also check:How to resolve the algorithm Magic 8-ball step by step in the FreeBASIC programming language
You may also check:How to resolve the algorithm One of n lines in a file step by step in the Julia programming language