#!/usr/bin/env ruby
# frozen_string_literal: true

require 'bundler/setup'
require 'repl_type_completor'
require 'irb'

ENV['IRB_COMPLETOR'] = 'type'
ReplTypeCompletor.preload_rbs
IRB.start(__FILE__)
