e1c91ee50f
As a part of efforts to stabilize Native stdlib #KT-55765.
10 lines
279 B
Kotlin
10 lines
279 B
Kotlin
/*
|
|
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
@OptIn(kotlin.native.runtime.NativeRuntimeApi::class)
|
|
fun main(args: Array<String>) {
|
|
kotlin.native.runtime.GC.collect()
|
|
}
|
|
|