android-finance-tracker/server/src/main/kotlin/Main.kt
anthonycicc 1fc894829d Added syncLibs command, does DependencyVersions way better.
Also reformatted lots of code, to follow guidelines
2018-11-02 20:45:32 -04:00

21 lines
No EOL
503 B
Kotlin

fun main(args: Array<String>) {
println(
Transaction(
Money(3020),
category = "Transportation",
location = "Arian's",
timestamp = "Jan 01, 2018 00:00"
)
)
val t = Transaction.fromJSON(
"{\"cost\": 2168," +
" \"category\": \"Transportation\"," +
" \"location\": \"Arian's\"," +
" \"timestamp\": \"Jan 01, 2018 00:00\"}"
)
println(t)
println(t.serialize())
}