الثلاثاء، 18 سبتمبر 2018

LIST IN A RING

/* Application : variables (list)
Author : Omar Bsher
Date 2017/12/16
*/

#variable Type (string,Number,List,Object)

alist=[
:Name ="Omar Bshr",
: Jop = "Employe",
: country = " Libya",
: Phone = "218914771830"
]
? alist
alist1=[
["Name ","Omar Bshr"],
[" Jop ", "Employe"],
[" country ", " Libya"],
[" Phone " , "218914771830"]
]
? alist1