Created
August 28, 2011 01:11
-
-
Save IndianGuru/1176096 to your computer and use it in GitHub Desktop.
JRuby program 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JS = Java::java.lang.System | |
os = JS.get_property 'os.name' | |
home = JS.get_property 'java.home' | |
mem = Java::java.lang.Runtime.get_runtime.free_memory | |
puts "Running on #{os}" | |
puts "Java home is #{home}" | |
puts "#{mem} bytes available in JVM" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment