This file contains hidden or 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
| val myFirstScalaVariable: Int = 5 | |
| val bookTitle: String = "Lord of the Rings: The Fellowship of the Ring" | |
| val bookAuthor: String = "J. R. R. Tolkien" | |
| val bookNoOfPages: Int = 423 | |
| val message: String = "Hello World" |
This file contains hidden or 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
| let user1 = { | |
| name: 'Miguel', | |
| age: 6 | |
| } | |
| let user2 = { | |
| name: 'Maria', | |
| age: 7 | |
| } | |
| let theClass = [user1, user2]; |