How to resolve the algorithm Arrays step by step in the langur programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Arrays step by step in the langur programming language

Table of Contents

Problem Statement

This task is about arrays. For hashes or associative arrays, please see Creating an Associative Array. For a definition and in-depth discussion of what an array is, see Array.

Show basic array syntax in your language. Basically, create an array, assign a value to it, and retrieve an element   (if available, show both fixed-length arrays and dynamic arrays, pushing a value into it). Please discuss at Village Pump:   Arrays.
Please merge code in from these obsolete tasks:

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Arrays step by step in the langur programming language

Source code in the langur programming language

var .a1 = [1, 2, 3, "abc"]
val .a2 = series 4..10
val .a3 = .a1 ~ .a2

writeln "initial values ..."
writeln ".a1: ", .a1
writeln ".a2: ", .a2
writeln ".a3: ", .a3
writeln()

.a1[4] = .a2[4]
writeln "after setting .a1[4] = .a2[4] ..."
writeln ".a1: ", .a1
writeln ".a2: ", .a2
writeln ".a3: ", .a3
writeln()

writeln ".a2[1]: ", .a2[1]
writeln()

writeln "using index alternate ..."
writeln ".a2[5; 0]: ", .a2[5; 0]
writeln ".a2[10; 0]: ", .a2[10; 0]
writeln()

  

You may also check:How to resolve the algorithm Pointers and references step by step in the SAS programming language
You may also check:How to resolve the algorithm String concatenation step by step in the Oberon-2 programming language
You may also check:How to resolve the algorithm Catalan numbers step by step in the APL programming language
You may also check:How to resolve the algorithm Word ladder step by step in the F# programming language
You may also check:How to resolve the algorithm Comma quibbling step by step in the ZX Spectrum Basic programming language