# HG changeset patch # User one # Date 1413711298 -32400 # Node ID c4846688f635bade99b1aa47fd86e3729034788f # Parent ba5370090393d6a140c52ce9304c38db4a7d147d change gradle java ver diff -r ba5370090393 -r c4846688f635 build.gradle --- 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' diff -r ba5370090393 -r c4846688f635 src/test/java/test.java --- 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 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> split = test.splitAt(3); - test = split._1(); - test = test.tail(); - System.out.println("www"); - } -}