mango_compiler_jit 0.1.0

The just-in-time compiler for the Mango programming language (PLANNED FOR FUTURE)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/* Mango compiler (mangolang.org) | Apache 2.0 license, © 2018. */

package org.mangolang.jit

import kotlin.test.Test
import kotlin.test.assertTrue

// This exists because the build fails when there are no tests; replace it with real tests when there is code to test!
class PlaceholderTest {
    @Test
    fun testSanityCheck() {
        assertTrue(1 == 1)
    }
}