A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
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.
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.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.