mango_compiler_reducing 0.1.0

The tool for reducing the AST to a minimal subset for the Mango programming language (UNDER CONSTRUCTION)
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.reducing

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)
    }
}