Scripting programming language, repl and namespaced aliases for commands.
This project started as a way to put into practice what I learned while reading the Rust programming language book.
It includes features that I find useful, such as a REPL, a calculator, a scripting language, and a way to store, execute, and load command-line aliases based on the project I'm working on.
Best practices and performance optimization were not a priority, so the code may not be the cleanest or most optimized.
If you would like to contribute, your pull request would be welcome.
docker run -it nbittich/adana # latest from master
docker run -it nbittich/adana:0.13.2 # latest release
docker build -t adana .
docker run -it adana
cargo install adana
adana
cargo build --release
./target/x86_64-unknown-linux-musl/release/adana
First, we start with the traditional hello world:
python
println("hello world!") # prints hello world
In the repl, you could also simply write:
python
"hello world!" # prints hello world
Comments are defined like in python, starting with #
.
You can put them after the last statement or before any useful code, for example:
```python # to go to the next line in the repl, press CTRL+x
# this will be ignored by the repl
println("hello world!") # this is also ok
```
Semicolons are not needed, if you need multiline statements, you can use a multiline block:
```python fancy_string = multiline { "this string\n" + "\tis\n" + "\t\ton several\n" + "lines\n" }
```
Multiline is useful when you want to process different instructions in several lines:
``` complexmathstuff = multiline { 1 *2 + 5 *sqrt(2) / 2. + 300 / 3 * 400 % 2 - (1 * 10^3) }
```
For more complex strings, you can use string blocks / F-Strings. You can define them using the java syntax:
java
block_string= """Hello world
I hope you are well.
This is a string block. you can use stuff like "string"
there, nothing will stop you"""
Like in javascript, you can add parameters to an f-string:
```javascript person = struct { name : "nordine", wasup : (age) => { if (age > 30) { "you are old!" } else { "you are young!" } }, age : 34 }
s1 = """Hello ${person.name}! You are ${person.age} years old. ${person.wasup(person.age)}""" ```
There are 14 operators & 3 constants:
| operator | description |
| ------------ | ---------------- |
| +
| add |
| -
| subtract |
| /
| divide |
| *
| multiply |
| %
| modulo |
| ^
| pow |
| <
| less than |
| >
| greater than |
| <=
| less or equal |
| >=
| greater or equal |
| &&
| and |
| \|\|
| or |
| ==
| equal |
| ()
| parenthesis |
| π
| PI number |
| γ
| EULER number |
| τ
| TAU number |
```python 5 + 5 # 10 5 + 5.5 # 10.5 5 / 5 # 1 5 / 6 # 0 5 / 6. # 0.8333333333333334 -- we force it to make a float division by adding "." 5 % 6 # 5 -- modulo on int 5 % 4.1 # 0.9000000000000004 modulo on double 5 ^ 5 # 3125 5 * 5 # 25 5 * 5.1 # 25.5 5 * (5+ 1/ (3.1 ^2) * 9) ^3. # 1046.084549281999
```
To define a variable, simply type the name of the variable followed by "=". Variable must always start with a letter and can have numerics or "_" in it. Add and assign(+=), subtract and assign (-=), etc are not supported.
python
vat = 1.21 # 1.21
sub_total1 = 10000
total = vat * sub_total1 # 12100
sub_total2 = 500 * vat # 605
sub_total1 = sub_total1 + sub_total2 # 10605
It's also possible to use the special variable name "_" to notify the language that this value is not used and doesn't have to be stored in context:
```python _ = 1
for _, n in 1..3 { println(n) }
_ = struct { _: "I will not be stored!", x: 39 } ```
There are two loops, the while loop and the for-each loop. The while loop looks like the one in C, while the for-each loop is a little bit more modern.
For-each loop doesn't require parenthesizes. You can only iterate over structs, strings and arrays.
```C count = 0
while(count < 10) { println(count) count = count + 1 } ```
javascript
for n in [1,2,3] {
println(n)
}
You have access to the current index in a for-each:
javascript
for index, n in [1, 2, 3] {
println("index: " + index + " value: " + n)
}
It is also possible to use the for-each loop with a string:
javascript
for i, letter in "hello" {
println(i)
}
In the case of a struct, the variable will be an entry (a struct with key/value)
javascript
s = struct {
name: "nordine",
age: 34,
members: ["natalie", "roger","fred"]
}
for id, entry in s {
println("Id: "+id +" Key: "+entry.key + " Value: " + to_string(entry.value))
}
Parenthesizes are optional for for-each:
```javascript arr = [1,2,3,4] total = 0 idxtotal = 0 for (index,a in arr) { total = total + a idxtotal = idx_total + index }
```
You can break if you match a certain condition within a while:
C
while(count < 10) {
println(count)
count = count + 1
if(count % 3 ==0) {
break
}
}
It is possible to define a range like so "start..end" (end exclusive), or "start..=end" (end inclusive):
```javascript
x = 0..10 # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] x = 0..=10 # [0,1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for i in 1..=10 { println("print 10 times this message") }
```
Same as C:
```C if(age > 12) { println("age > 12") } else if(age <9) { println("age < 9") } else { println("dunno") }
```
There is no type-checking in the language. You can add a string to an array, nothing will stop you!
In some cases though, you might get an error.
Below, is a list of types and how you declare them. You can also define your structure.
| type | examples |
| -------- | ------------------------------------------------------------------------------------------------ |
| null | null
|
| bool | true
/ false
|
| int | 5
|
| double | 12.
/ 12.2
|
| string | "hello"
|
| array | [1,2,"3", true]
|
| function | () => {"hello"}
(name) => {"hello" + name}
(n) => {
"hello"
}
|
| struct | struct {x: 8, y: ()=> {println("hello!")}}
|
You can define structs. Structs are a way of grouping related variables or functions together.
You can define function variables within a struct, but you cannot update the members of the function from within
the struct (there is no self
or this
).
The comma is required to separate each member, but not for the latest one.
Example of defining a struct:
```javascript person = struct { name: "hello", age: 20 }
personservice = struct { sayhi: (person) => { println("hi " + person.name) }, check_age: (person) => { if (person.age < 18) { println("you are too young") } else { println("you are too old") } } }
personservice.checkage(person)
```
You can access a struct in two ways:
```javascript name = person["name"] # name contains "hello" println(person["age"])
age=person.age # age contains "age" println(person.age)
```
Arrays are declared like in javascript but are "immutable". After declaration, you cannot (yet) push new data in them. to do that, you have to concatenate them with another array using the "+" operator.
python
arr = [] # declare an empty array
arr[0] = "kl" # Err: index out of range
arr = arr + ["kl"] # arr now is ["kl"]
You can update a value in the array with the syntax above, as long as the array is greater than the index provided, e.g:
```python arr = ["this", "is", "ax", "array", true, 1, 2.3] arr[2] = "an" #fix the typo print(arr[2]) # an
```
To get the length of an array, you can use the built-in function length
```python arr_len = length(arr) # 7
```
Characters within a string can be accessed & updated just like an array:
```python s = "this is a strink" s[2] # i length(s) # 16 s[15] = "g" # fix the typo s # this is a string
```
Here are some other examples of what you can do with arrays:
```python count = 9 arr = null
while(count > 0) { arr = [count, arr] count = count -1 }
while(arr != null) { print(arr[0] +",") arr=arr[1] } print("done")
```
The function can be declared inline or as a block. In the case of a function parameter, you either assign the function to a variable or use an anonymous function block.
Parameters cannot be modified within a function. if you want to update something, you have to return it and reassign it.
```python
hello = () => { println("hello, world!") } hello()
helloname = (name) => { println("hello "+name) } helloname("Bachir")
for_each = (arr, consumer) => { count = 0 len = length(arr) while(count < len) { consumer(arr[count]) count = count + 1 } return "" # do not print the count as the repl will print the latest statement }
foreach(["Mohamed", "Hakim", "Sarah", "Yasmine", "Noah", "Sofia", "Sami"], helloname)
(name) => { println("hello "+name) }
)
```
Parameters cannot be modified within a function. if you want to update something, you have to return it and reassign it. Everything that changes within the scope of a function won't have any effect on the outer scope.
Some other examples of what you can do with functions:
```python arr = ["Mohamed", "Hakim", "Sarah", "Yasmine", "Noah", "Sofia", "Sami"]
acc = (arr, v) => {arr + [v]} # arr is immutable, thus you have to reassign it if you call that function
arr = acc(arr, "Malika")
find_first = (arr, predicate) => { len = length(arr) count = 0 while(count < len) { temp = arr[count] if(predicate(temp)) { return temp } count = count + 1 } return null }
find_first(arr, (v) => { v[0] == "S" || v[0] == "s" })
fact = (n) => { if(n>=1) { n * fact(n-1) }else { 1 } } fact(10) ```
You can dynamically load a script in the repl. Assuming you've cloned the repo and you use docker, here's an example of how to do it.
Note that the extension can be anything.
docker run -v $PWD/file_tests:/scripts -it adana
```python
include("scripts/testfn.adana") # the built-in function to include m = map() m = pushv("nordine", 34, m) get_v("nordine", m) ```
There are several built-in functions available.
You already have seen length
to find the length of an array or string, include
to include a script inside the repl and println
to print something.
Here is a list of built-in functions available:
| name | description | example |
| ---------- | -------------------------------------------------- | ---------------------------------- |
| sqrt | square root | sqrt(2)
|
| abs | absolute value | abs(-2)
|
| log | logarithm | log(2)
|
| ln | natural logarithm | ln(2)
|
| length | length of an array or string | length("azert")
|
| sin | sine of a number | sin(2)
|
| cos | cosine of a number | cos(2)
|
| tan | tangent of a number | tan(2.2)
|
| print | print without a newline | print("hello")
|
| println | print with a newline | println("hello")
|
| include | include a script | include("scripts/test_fn.adana")
|
| readlines | read a file and returns an array
of each lines | read_lines("scripts/name.txt")
|
| toint | cast to int | to_int("2")
to_int(2.2)
|
| todouble | cast to double | to_double("2.2")
|
| tobool | cast to bool | to_bool("true")
|
| tostring | cast to string | to_string(true)
|
| drop | drop a variable from context | drop("myvar")
drop(arr[0])
|
| eval | Evaluate a string as code | eval("sqrt(9)")
|
| typeof | Type of variable | type_of(true)
|
Note that you can use the repl command script_ctx
to see what variables are stored in the context.
You can alias useful commands in a separate namespace (e.g: "work", "git", "docker").
You can then run that command through the repl. They will be save in disk so you can backup them, restore them etc.
You can also add any kind of values (e.g, ssh keys) to store them.
There is no possible interaction with the scripting language yet.
docker run -it -v $PWD/sample.json:/adanadb.json adana --inmemory
restore
use misc
ds
printenv
| name | alt | description |
| ---------------- | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| put | N/A | Put a new value to current namespace. can have multiple aliases with option '-a'. e.g put -a drc -a drcomp docker-compose
|
| describe | ds | List values within the current namespace. |
| listns | lsns | List available namespaces. |
| currentns | currentns | Print current namespace. |
| backup | bckp | Backup the database of namespaces to the current directory |
| flush | flush | Force flush database |
| restore | N/A | Restore the database from current directory |
| deletens | delns | Delete namespace or clear current namespace values. |
| mergens | merge | Merge current with a given namespace |
| delete | del | Remove value from namespace. Accept either a hashkey or an alias. e.g del drc
|
| get | | Get value from namespace. Accept either a hashkey or an alias. e.g get drc
|
| exec | | Run a value from the namespace as an OS command. Accept either a hashkey or an alias. It is completely optional, if you just write the alias, it will also works e.g exec drc
or simply drc
|
| cd | | Navigate to a directory in the filesystem |
| use | | Switch to another namespace. default ns is DEFAULT. e.g use linux
|
| dump | | Dump namespace(s) as json. Take an optional parameter, the namespace name. e.g dump linux
|
| clear | cls | Clear the terminal. |
| printscriptctx | scriptctx | Print script context |
| storescriptctx | | Store script context (optional name) e.g store_script_ctx 12022023
or store_script_ctx
|
| loadscript_ctx | | Load script context (optional name) e.g load_script_ctx 12022023
or load_script_ctx
|
| help | | Display help. |
CTRL + x => new line in the repl
CTRL + d => quit
CTRL + c => undo
CTRL + l => clear screen
CTRL + r => history search
CTRL + p => π
RUST_LOG=adana=debug adana
```
adana --inmemory
```
```
adana --dbpath /tmp/mydb.db --historypath /tmp/myhistory.txt --nofb
```