User:Pifrited/Lang full of special character

From Esolang
Jump to navigation Jump to search
Character Example
+ Plus 1+1 // 2
- Minus 2-1 // 1
* Multiply 2*3 // 6
/ Divide 8/4 // 2
. Point 0.1
= Equal 1=1 // 1
< Lower than 1<2 // 1
> Greater than 2>1 // 1
<= Equal or lower than 2<=4 // 1
>= Equal or greater than 5>=0 // 1
! NOT !(1=1) // 0
& AND (1)&(3<7) // 0
| OR (3<7) // 1
!= Not equal 9!=7 // 1
^ Power 2^3 // 8
\ Reverse
\^ Root 121\^2 // 11
% Mod 62%3 // 2
@ Any integers 13?{3@+1:$1,:$0} //1
? Assign the value to the expression behind 27{@^3:$1,:$0}
: Connect the condition and the statements #sign{<1:-1,=0:$0,:$+}
Example Example
> Example Example
Example Example
Example Example
$ Return $12 //12
{ Example Example
} Example Example
( Example Example
) Example Example
# Example Example
\\ Example Example