Author: Harm Backer Category: Christmas Challenge 2023 System: IBM Mainframe (Hercules emulation) Language: Assembler Len source code: <# bytes> Len exe file: 856 bytes Len code only: 188 bytes Instructions: Install Hercules emulator (MVS version 3.8j) create respective libraries submit job (see 'VCCC2023 Job control.txt' Description: The code prints 3 figures in rhombus shape with different starting columns in line 1. From starting point, it moves down and right one step. In case a border is reached, next direction is up resp. left, depending on the border. Once line 0 was processed, next figure is printed. Comments: Similar logic as my IBMPC solution but as on the maing“frame, this is a batch program, there is no screen to print. Therefore, the output is written to an internal table (114 bytes). In the second part of the program (60 bytes), the internal table is printed out to a list before control is given back to calling OS (14 bytes) Displacements can be seen in file 'VCCC2023 Job output.txt' starting in line 213 (compile list output).