Skip to content
Snippets Groups Projects
Commit 26ca1be1 authored by EckBalu's avatar EckBalu
Browse files

starter found

parent 7f85f69a
No related branches found
No related tags found
1 merge request!1Javaimpl
File moved
File moved
File moved
File moved
File moved
File moved
File moved
package logic
class Order(val born: ArrayList<Int>, val survive: ArrayList<Int>) {
constructor() {
setBorn("")
setSurvive("")
}
constructor(born: String, survive: String) {
setBorn(born);
setSurvive(survive);
}
constructor(order: Order) {
setBorn(order.born.toString())
setSurvive(order.survive.toString())
}
}
\ No newline at end of file
package main
fun main(args: Array<String>) {
println("Hello World!")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment