Q:

Ruby program to print the current working directory

0

In this program, we will get the current working directory using Dir.pwd() method and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to print the current working directory is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to print the
# current working directory

puts "Current working directory is: ",Dir.pwd();

Output:

D:\ruby_programs

Explanation:

In the above program, we used Dir.pwd() method to get the current working directory and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now