Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Employee(val firstName: String, val lastName: String, val yearsWorked: Int) {
- // Write your code below
- var fullName = "$firstName $lastName"
- init{
- if(yearsWorked >1){
- println("$fullName is eligible for a raise!")
- }
- else {
- println("$fullName is not eligible for a raise just yet.")
- }
- }
- }
- fun main() {
- // Create an instance below 👩🏻💼
- var projectManager = Employee("Maria", "Gonzalez", 2)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement