windows上的IRB透明屏幕

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows上的IRB透明屏幕相关的知识,希望对你有一定的参考价值。

Since there is no convenient way to clear the console in irb on windows, we can simple emulate the dos cls function
  1. # throw this inside %userprofile%.irbrc and you're good
  2. def cls
  3. system('cls')
  4. end

以上是关于windows上的IRB透明屏幕的主要内容,如果未能解决你的问题,请参考以下文章