Mercurial > hg > Members > tatsuki > bench > jungle-core
changeset 133:c4846688f635
change gradle java ver
author | one |
---|---|
date | Sun, 19 Oct 2014 18:34:58 +0900 |
parents | ba5370090393 |
children | f46a6e0e4594 |
files | build.gradle src/test/java/test.java |
diffstat | 2 files changed, 2 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/build.gradle Sun Oct 19 09:15:38 2014 +0900 +++ b/build.gradle Sun Oct 19 18:34:58 2014 +0900 @@ -1,8 +1,8 @@ apply plugin: "java" apply plugin: "eclipse" -sourceCompatibility = 1.6 -targetCompatibility = 1.6 +sourceCompatibility = 1.8 +targetCompatibility = 1.8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' version = '1.0'
--- a/src/test/java/test.java Sun Oct 19 09:15:38 2014 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ - -import fj.*; -import fj.data.List; - -public class test { - public static void main(String _args[]) { - List<Integer> test = List.nil(); - test = test.snoc(0); - test = test.snoc(1); - test = test.snoc(2); - test = test.snoc(3); - test = test.snoc(4); - test.reverse(); - P2<List<Integer>,List<Integer>> split = test.splitAt(3); - test = split._1(); - test = test.tail(); - System.out.println("www"); - } -}