Skip to content

Instantly share code, notes, and snippets.

@jiffle
jiffle / kotlin-language-cheatsheet-part1.md
Last active March 3, 2018 15:28 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

Kotlin Programming Language - Part 1

Kotlin language website is at https://kotlinlang.org.

All the codes here can be copied and run on Kotlin online editor.

Basics

  • You do not need ; to break statements.
  • Comments are similar to Java or C#, /* This is comment */ for multi line comments and // for single line comment.
@jiffle
jiffle / GradleCheatsheet.md
Last active April 14, 2024 10:00 — forked from qrman/GradleCheatsheet.md
Cheatsheet of Gradle Commands and Config

Command Cheatsheet

  • Convert Maven build to gradle

    gradle init

  • Initialise new project folder structure (Java example)

    gradle init --type java-library

@jiffle
jiffle / gradle-cheatsheet.gradle
Last active October 5, 2017 07:54 — forked from jahe/gradle-cheatsheet.gradle
Gradle File with Many Common Examples
// imports a couple of java tasks
apply plugin: "java"
// List available tasks in the shell
> gradle tasks
// A Closure that configures the sourceSets Task
// Sets the main folder as Source folder (where the compiler is looking up the .java files)
sourceSets {
main.java.srcDir "src/main"