Android Day 6 Make an offline kotlin playground

If you want to practice kotlin with out android app running. You can do that in a "no activity project"

like this:

image-20240131194808942

And yes , this is an option!

After that , you can create an file like "test.kt"

package com.williamjiamin.learnkotlinthehardway

fun main(){
    println("Hello! This is William Jiamin, Welcome to my channel!")
}

And it will run as an console app.

image-20240131232526844