Created
October 13, 2021 21:39
-
-
Save ProIntegritate/8c543d5e80c8aec34d8e6ad46085be69 to your computer and use it in GitHub Desktop.
Amiga Guru mediation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim sTopChar As String = "▄" | |
Dim sBottomChar As String = "▀" | |
Dim sVerticalChar As String = "█" | |
Console.ForegroundColor = ConsoleColor.Red | |
For n = 0 To 63 | |
Console.Write(sTopChar) | |
Next | |
Console.Write(vbCrLf) | |
Console.WriteLine(sVerticalChar & " Software failure. Press left mouse button to continue " & sVerticalChar) | |
Console.WriteLine(sVerticalChar & " Guru mediation. #00000000.00000000 " & sVerticalChar) | |
For n = 0 To 63 | |
Console.Write(sBottomChar) | |
Next | |
Console.Write(vbCrLf) | |
Console.ForegroundColor = ConsoleColor.White | |
= | |
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ | |
█ Software failure. Press left mouse button to continue █ | |
█ Guru mediation. #00000000.00000000 █ | |
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment