Add IntList a list implementation for primitive integers.

This commit is contained in:
2017-02-03 20:31:58 +01:00
parent d3315a80d5
commit 145c2152d0
12 changed files with 1079 additions and 0 deletions

22
gradlew.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
mkdir -p tmp
cd tmp
if ! test -d "gradle-2.0"; then
wget https://services.gradle.org/distributions/gradle-2.0-bin.zip
unzip gradle-2.0-bin.zip
fi
#echo setting environment
export GRADLE_HOME=`pwd`/gradle-2.0
#echo GRADLE_HOME=$GRADLE_HOME
export PATH=$PATH:$GRADLE_HOME/bin
#echo $PATH
cd ..
gradle --daemon $1 $2 $3 $4 $5 $6 $7