Sha256: 29b0139e0dbf632227425e207f14654b0efa71c92750c9492bb7cb873e6eedd5
Contents?: true
Size: 275 Bytes
Versions: 3
Compression:
Stored size: 275 Bytes
Contents
# frozen_string_literal: true require_relative 'statement' module Basic101 class EndifStatement < Statement def initialize end def execute(runtime) end def goto_following_statement(runtime) runtime.goto_index(@index + 1) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
basic101-1.0.2 | lib/basic101/endif_statement.rb |
basic101-1.0.1 | lib/basic101/endif_statement.rb |
basic101-1.0.0 | lib/basic101/endif_statement.rb |