Skip to content

Instantly share code, notes, and snippets.

public static void main(String... args){
String movieName = "Injana Jones";
Boolean isWatched = false;
int year = 1989;
Double rate = 8.3;
System.out.println(movieName + "\n" + year);
}
package fr.wildcodeschool.methodQuest;
public class SecretSentence {
public static String writeSecretSentence(String firstParameter, String secondParameter) {
String sentence = firstParameter + " s'incline face à " + secondParameter;
return sentence;
}
@tiga-tiga
tiga-tiga / pom.xml
Created May 23, 2018 13:16
quete Maven
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.wildcodeschool.quetes</groupId>
<artifactId>maveninstall</artifactId>
<version>1.0</version>
@tiga-tiga
tiga-tiga / add.ts
Created September 4, 2018 07:21
typescript
function hello(name : string){
console.log("Hello " + name);
}
var firstName = "bob";
hello(firstName);
hello(firstName + " marley");
function concat(a : string , b : string ) {