Q:

Ruby program to demonstrate the BEGIN and END blocks

belongs to collection: Ruby Blocks Programs

0

In this program, we will demonstrate the BEGIN and END blocks. The BEGIN block executes at the start of the program and END block executes at the end of the program, and other statements execute before the END block.

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 demonstrate the BEGIN and END blocks is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate the 
# BEGIN and END blocks

BEGIN { 
   puts "Statement in BEGIN block";
} 
  

END { 
    puts "Statement in END block";
}
  
# Below statements will execute 
# before END block 
puts "Message1";
puts "Message2";

Output:

Statement in BEGIN block
Message1
Message2
Statement in END block

Explanation:

In the above program, we created BEGIN and END blocks. The BEGIN block calls at the beginning of program execution and END block calls at the end of program execution, and other statements executes before the execution of the end block.

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

total answers (1)

Ruby program to create multiple BEGIN and END bloc... >>
<< Ruby program to demonstrate the yield statement wi...