Skip to content

Instantly share code, notes, and snippets.

@Isammoc
Isammoc / gist:a476e0cfa34269779790
Created June 2, 2015 15:25
@Cqoicebordel sais tu s'il est possible de faire en java un truc similaire à : a,b=[int(i) fort i in input.split()] ?
String[] split = input.split();
int a = Integer.parseInt(split[0]);
int b = Integer.parseInt(split[1]);
@Isammoc
Isammoc / .travis.yml
Created July 12, 2012 22:29 — forked from berngp/.travis.yml
Grails Travis YML file
language: java
jdk:
- openjdk7
- oraclejdk7
before_install:
- sudo add-apt-repository -y ppa:groovy-dev/grails
- sudo apt-get update
- sudo apt-get -y install grails-ppa # not sure if necessary