Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
kunyavskiy committed Apr 7, 2021
1 parent c9c480d commit fcf73b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ repositories {
dependencies {
implementation(compose.desktop.windows_x64)
implementation(compose.desktop.linux_x64)
implementation(compose.desktop.macos)
//implementation(compose.desktop.macos)
implementation(kotlin("stdlib"))
implementation("org.jetbrains.compose.material:material:")
implementation("net.java.dev.jna:jna-platform:5.8.0")
implementation("org.jetbrains.skija:skija-macos:0.89.0")
//implementation("org.jetbrains.skija:skija-macos:0.89.0")
}

tasks.withType<KotlinCompile>() {
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ fun visualizerMain() = Window(
"Python" -> {
ConstTextField(
"""
sys.stdin = open("$outputFileNameEncoded", "r");
sys.stdout = open("$inputFileNameEncoded", "w");
sys.stdin = open("$outputFileNameEncoded", "r")
sys.stdout = open("$inputFileNameEncoded", "w")
""".trimIndent()
)
}
Expand Down

0 comments on commit fcf73b4

Please sign in to comment.