Sha256: b770b24487d23a606925bb0092992f0cd532277a058b15b61a0004d75cfb92d6
Contents?: true
Size: 378 Bytes
Versions: 119
Compression:
Stored size: 378 Bytes
Contents
/** * Copyright 2005-2007 Xue Yong Zhi * Distributed under the BSD License */ package com.xruby.runtime.builtin; import com.xruby.runtime.lang.*; ////@RubyLevelModule(name="GC") public class RubyGC { //@RubyLevelMethod(name="start", singleton=true) public static RubyValue start(RubyValue receiver) { System.gc(); return RubyConstant.QNIL; } }
Version data entries
119 entries across 119 versions & 1 rubygems