This is a test post for who knows why, like seriously… why?
There’s not much else here yet but this cool link from someone’s blog maybe the blog is really cool or something like that.
To design is to plan and to organize, to order, to relate and to control. In short it embraces all means of opposing disorder and accident.
— Josef Albers, Interaction of Color
This is a codeblock, maybe it’s pretty.
This is inline code syntax:
No language indicated, so no syntax highlighting.
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
// 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