11 lines
274 B
Kotlin
11 lines
274 B
Kotlin
package com.example.hpostesting
|
|
|
|
import java.text.SimpleDateFormat
|
|
import java.util.Date
|
|
import java.util.Locale
|
|
|
|
fun main(){
|
|
val dateFormat = SimpleDateFormat("MM:HHddMMyyyy", Locale.getDefault())
|
|
val currentDate = Date()
|
|
print(dateFormat.format(currentDate))
|
|
} |