Operators

<5:1> block-bit access operator
..      conditional parameter operator 
::     namespace operator/record access operator
^x     dereference with null check, throw error on nullcheck
^()   dereference without null check
func(x,y)  --> (5,6);     anonymous func access operator
addrof(x)                  address of operator
typecheck()            typechecking operator which will invoke compiler's typechecking
typeof()
:                iterator operator
%+  cyclic-overflow addition
%- 
%/
%*
%% 
+
-
/
*
%
<
>
<=
+= 
-=
>=
|>   record/variant member access operator
=>          security/crypto access operator/pattern matching operator , example  @encode key from aes.encode_cipher(value)
key=>protected_variable
< >, tape access operator example ,
tape { int x, int y, int z} t;
z = t<3>
x = arrayof(t, 5)
z2 = x<6> 
<typename >    typecasting operator
xor()
and()
or()
not()
lsft()
rsft()
lor()
ror()
owner()
create
erase()
len()
:=   assignment operator
=  comparision operator
!= not equals to
@    Printer/macro/coprocessor operator
@subs 
@assume x = 5
@keyword
@use "./hello.cpp" , directly concatenate file content
@encode key from aes.encode_cipher(value)  // during running based on your root privilege or admin previlidge this statement will work or else it will throw error
@credentials(username, password)
@checkaccess access , will check username, password has credentials or not, then you can access it, or else error will be thrown
@prompt username, password  ,   prompt for username & password
@decode value from aes.decode_cipher(key) // during running based on your root privilidge or admin previlidge this statement will work or else it will throw error
@link  /usr/bin/redis.so
@takes "sysio" "algo" "search" "sort" "user"
@inline
@optim "string"
@% - hide code like this @ .. @

IMD codes - Indian multimedia digital codes

'%EOL'
'%ACK' - will send success  exit code to OS
'%nl'
'%h'  - highlight/bold the characters
'%i' - italics
'%f' - font style
'%r34'  - repeat 34 times
'%j'   - jsonize
'%c24'
'%b'  - binary format
'%%' - print %
'%gg'   - intent the string
'%d' delete the character
'%p' - paragraph the text
'%l' - line number
'%sos'
'%eos'
'%sp' - space

Comments

Popular posts from this blog

Keywords