Search
 
SCRIPT & CODE EXAMPLE
 

ELIXIR

elixir list

iex> [1, "two", 3, :four]
[1, "two", 3, :four]

iex> [1, 2, 3] ++ [4, 5, 6]
[1, 2, 3, 4, 5, 6]

iex> [1, true, 2, false, 3, true] -- [true, false]
[1, 2, 3, true]

iex> [head | tail] = [1, 2, 3]
iex> head
1
iex> tail
[2, 3]
Comment

PREVIOUS NEXT
Code Example
Elixir :: elixir Creating Custom Sigils 
Elixir :: elixir nested if 
Scala :: scala hello world 
Scala :: how to create empty data frame in scala 
Scala :: scala string to boolean 
Scala :: val in scala 
Scala :: reduce scala 
Scala :: scala anonymous function 
Actionscript :: microsoft.visualstudio.web.codegeneration.design 3.1.0 
Actionscript :: mass transit logging to seq 
Excel :: google sheets select element after split 
Excel :: excel paste across cells 
Perl :: perl replace substring 
Perl :: perl make a new directory 
Perl :: nested haah in perl 
Pascal :: while do in pascal 
Powershell :: takeown /f 
Gdscript :: godot check left mouse button 
Abap :: abap integer 
Assembly :: docker cannot stop container 
Assembly :: dataframe.shape return what? 
Assembly :: gridbaglayout span 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: datatable disable searching 
Javascript :: js random hex color 
Javascript :: WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for jquery 
Javascript :: jquery slim min js url 
Javascript :: js element exists 
Javascript :: select2 in modal not work 
Javascript :: angular validators number only in reactive form 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =