Project three

Project three

Yet another placeholder, but let´s make it a bit longer this time.

No alternative srcset images set.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Inline code.

A code block without syntax h, four-space indent:

A code block without syntax

A code block without syntax h, backticks:

A code block without syntax

A code block with syntax h, backticks, a la markdown:

library(dplyr)

glimpse(mtcars)

A code block with syntax h, tildes, a la rouge:

library(dplyr)

glimpse(mtcars)

A code block with syntax h, tildes, a la rouge:

// file: "code-block.js"
// Example can be run directly in your JavaScript console

// Create a function that takes two arguments and returns the sum of those
// arguments
var adder = new Function("a", "b", "return a + b");

// Call the function
adder(2, 6);
// > 8