@@ -385,7 +385,7 @@ on the Mac, "Extract Here" on Linux, or "Extract all ..." on Windows.
385
385
# Appendix B: Command-Line Hello World
386
386
387
387
This appendix explains how to compile and run the program shown in the "Hello
388
- World" atom in the book, using the latest version (1.4 or higher) of the
388
+ World" atom in the book, using the latest version (1.5 or higher) of the
389
389
[ Kotlin command-line compiler] ( http://kotlinlang.org/docs/tutorials/command-line.html ) .
390
390
391
391
Open up a console window in the ` HelloWorld ` directory, where you'll see
@@ -455,15 +455,15 @@ kotlin bar.FooKt
455
455
456
456
The Kotlin interpreter is also called the REPL (for * Read-Evaluate-Print-
457
457
Loop* ). To use this you must first install the
458
- latest version (1.4 or higher) of the [ Kotlin command-line
458
+ latest version (1.5 or higher) of the [ Kotlin command-line
459
459
compiler] ( http://kotlinlang.org/docs/tutorials/command-line.html ) .
460
460
461
461
> NOTE: You do not need to install command-line Kotlin for the operations
462
462
> described previously in this README.
463
463
464
464
## Install Kotlin
465
465
466
- In this book, we use Kotlin version 1.4 , the latest available at the time. The
466
+ In this book, we use Kotlin version 1.5 , the latest available at the time. The
467
467
detailed installation instructions for the command-line compiler are available
468
468
at [ The Kotlin Site] ( https://kotlinlang.org/docs/tutorials/command-line.html ) .
469
469
@@ -482,13 +482,13 @@ To start the REPL, type `kotlinc` by itself on the command line. You should see
482
482
something like the following:
483
483
484
484
```
485
- Welcome to Kotlin version 1.4 (JRE 1.8.0_144-b01)
485
+ Welcome to Kotlin version 1.5 (JRE 1.8.0_144-b01)
486
486
Type :help for help, :quit for quit
487
487
>>>
488
488
```
489
489
490
490
The exact version numbers will vary depending on the versions of Kotlin
491
- and Java you've installed, but make sure that you're running Kotlin 1.4
491
+ and Java you've installed, but make sure that you're running Kotlin 1.5
492
492
or greater.
493
493
494
494
The REPL gives you immediate interactive feedback, which is helpful for
0 commit comments