by Lorenzi Davide (1 Submission)
Category: Complete Applications
Difficulty: Advanced
Date Added: Wed 3rd February 2021
Rating:
(2 Votes)

DC3 is a complete but limited (because I've neither the time nor the will to enhance it) VB like compiler/interpreter that can be used for learning how to create a complete and fully functional compiler. It comes with its complete source code in Visual Basic 6.
It compiles simple VB like programs and creates a byte code executed by a Virtual Machine, like Java and .NET languages.
Please Vote for this code!
Inputs
VB like programs
Assumes
A compiler is a specialized computer program that converts source code written in one programming language into another language, usually machine language (also called object code or machine code) so that it can be understood by computer processors.
Source code is the version of software (usually an application program or an operating system) as it is originally written (i.e., typed into a computer) by a human in plain text (i.e., human readable alphanumeric characters). Source code can be written in any of numerous programming languages, some of the most popular of which are C, C++, Java, Perl, PHP, Python and Tcl/Tk.
Code Returns
creates a byte code executed by a Virtual Machine