removes remnant

This commit is contained in:
Torsten Ruger 2018-03-13 16:52:31 +05:30
parent 20a88f9ac8
commit 698de13d65

View File

@ -1,12 +0,0 @@
# The Vm Module expresses a medium level virtual machine.
# It is the level between the higher ruby abstraction and the lower risc level.
#
# Historically it has grown out of a language abtraction that was not unlike c,
# in that it has tyes and everything is known at compile time.
# No method dispatch, just calling.
# In some ways it is more like c++ as it knows about classes and in fact everything is an
# object.
module Vm
end
require_relative "vm/tree"
require_relative "vm/method_compiler"