Welcome to ElixirBlocks: Difference between revisions

From ElixirBlocks
Jump to: navigation, search
No edit summary
No edit summary
 
(28 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Phoenix and Elixir Programming Wiki=
To view all Elixir tutorials and content just click [[Special:AllPages|Explore]]


This is my personal web project where I document blocks of Elixir and Phoenix code that I find useful.


This is my personal web project where I write small working blocks of useful Elixir Code.


To contribute follow these guidelines:


1. Write small, fully working code examples. Ideally, the reader should be able to copy and paste the code and have it working quickly. For larger code examples, explicitly break them up into smaller examples so that each block is easily validated.
<source>
 
2. Set assumptions before writing your code. If your code requires prerequisite knowledge, be explicit and inform the reader.
 
3. Provide context for your code so that the reader understands its usefulness.
 
To write code you encapsulate it in the  '''syntaxhighlight'''  element. Click the blue Edit button to see the syntax of the code example below.
 
 
<syntaxhighlight>
def hello_world() do  
def hello_world() do  
   "hello world"
   "hello world"
end
end
</syntaxhighlight>
</source>


[[Special:UserLogin | LogIn or Create Account]]
[[Special:UserLogin | LogIn or Create Account]]

Latest revision as of 05:08, 31 August 2025

Phoenix and Elixir Programming Wiki

To view all Elixir tutorials and content just click Explore

This is my personal web project where I document blocks of Elixir and Phoenix code that I find useful.


def hello_world() do 
  "hello world"
end

LogIn or Create Account