Algorithms, Blockchain and Cloud

Matrix Print in Batch for Fun


Some complex tasks might not be so complicated. For example, to emulate the matrix printing like the following.

All you need is just a few lines of code in windows batch, printing lines by lines of random numbers. Each line consists of a few random integers, which lead to different length. Save the following using notepad or whatever editor, and make sure it ends with *.cmd or *.bat file extension.

Double click and you are good to go. The emulator will not stop until you press Ctrl + C or simply close it.

@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks

–EOF (The Ultimate Computing & Technology Blog) —

187 words
Last Post: Site Adsense Ads Adjustment
Next Post: Delphi COM object private attributes not accessible in multithreading

The Permanent URL is: Matrix Print in Batch for Fun (AMP Version)

Exit mobile version