Main Page: Difference between revisions

From ElixirBlocks
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
‎<syntaxhighlight>
‎<source>
def test() do
def test() do


   "hello world"
   "hello world"
end
end
‎</syntaxhighlight>
‎</source>

Revision as of 04:25, 8 March 2023

def test() do

  "hello world"
end
‎