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
import scala.annotation.tailrec | |
/** | |
* To compile and look at the generated Java bytecode of this class, execute | |
* these commands at the command-line prompt: | |
* | |
* > scalac tailrec.scala | |
* > javap -p -c Test$.class | |
* | |
* This is of value to observe the differences in the generated bytecode by |
NewerOlder