Skip to content

Commit

Permalink
use UTF-8 as jvm default encoding
Browse files Browse the repository at this point in the history
fixes #69
  • Loading branch information
iceboy233 authored Aug 17, 2019
1 parent 34ccddb commit 3124dd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/langs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ pas:
java:
type: compiler
compiler_file: /usr/bin/javac
compiler_args: javac -d /out -encoding utf8 /in/Main.java
compiler_args: javac -d /out -encoding UTF-8 /in/Main.java
code_file: Main.java
execute_file: /usr/bin/java
execute_args: java Main
execute_args: java -Dfile.encoding=UTF-8 Main
py:
type: compiler
compiler_file: /usr/bin/python
Expand Down

0 comments on commit 3124dd9

Please sign in to comment.