Skip to content

Instantly share code, notes, and snippets.

View bradarner's full-sized avatar

Brad Arner bradarner

View GitHub Profile

Coding Challenge

Objective

Write a program that prints out a multiplication table of the first 10 primary numbers.

The program must run from the command line and print one table to STDOUT. The first row and column of the table should have the 10 primes, with each cell containing the product of the primes for the corresponding row and column.

Notes

defmodule HelloWorld do
def run do
IO.puts "Hello World from Gist!"
end
end