This document discusses Julia, a programming language for technical computing that is similar to R but aims to provide both fast development and fast execution. It provides an overview of Julia's features, compares it to R, and gives an example of implementing a simple Gibbs sampler in both R and Julia. Julia code runs much faster than equivalent R code due to its just-in-time compilation, and it can also distribute computations across multiple processors. The document demonstrates Julia's syntax and shows how to define functions, templated methods, and new data types.