Quine in Visual Basic

Published on 07 May 2026 (Updated: 07 May 2026)

Welcome to the Quine in Visual Basic page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

Module Quine
    Sub Main()
        Dim s As String = "Module Quine{0}    Sub Main(){0}        Dim s As String = {1}{2}{1}{0}        Console.WriteLine(s, Chr(10), Chr(34), s){0}    End Sub{0}End Module"
        Console.WriteLine(s, Chr(10), Chr(34), s)
    End Sub
End Module

Quine in Visual Basic was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.