Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View AlAskalany's full-sized avatar
🎯
Focusing

Ahmed AlAskalany AlAskalany

🎯
Focusing
View GitHub Profile
@AlAskalany
AlAskalany / FizzBuzz.kt
Created April 11, 2020 13:36
FizzBuzz in Kotlin
fun main(args: Array<String>) {
(1..100).forEach {
val divBy3 = it%3 == 0
val divBy5 = it%5 == 0
if(divBy3) {
if(divBy5) {
println("FizzBuzz")
} else {
println("Fizz")
}
@AlAskalany
AlAskalany / FetchAndTrackAllRemoteBranches.md
Created September 5, 2019 10:03
Fetches. creates, and tracks all remote branches
@AlAskalany
AlAskalany / README-Template.md
Created July 2, 2017 12:36 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites