Boson is envisioned to be a multi-paradigm language, with a Static and Strong Type System. Boson Compiler currently in its initial stage has a Type System and implements Structured Programming Paradigm, more on language reference can be found in the docs here. The compiler is in active development and will evolve with more paradigms incrementally.
...
fn binarySearch(int l,int t,int r, int[10] ta) int {
int m;
if(l <= r){
m = (l + r) / 2;
if(ta[m] < t){ return binarySearch(m+1,t,r,ta); }
else {
if(ta[m] > t){ return binarySearch(l,t,m-1,ta); }
else{ return m; }
}
}
return -1;
}
...
----------------------------------------
' > Hello Boson '
| |
| |
| |
| |
| |
| |
| |
| |
| |
. .
----------------------------------------
||
||
||
==========
____________________
/ ~ ~ ~ ~ ~ ~ ~ ~ ~ /
/ ~ ~ ~ ~ ~ ~ ~ ~ ~ /
/ ~ ~ ~ ~ ~ ~ ~ ~ ~ /
====================
#Native C utility function calls
consume fn printchar(int d) void;
consume fn printint(int n) void;
consume fn nextLine() void;
fn printArt() void {
...
for(;i < 9; i = i + 1){
nextLine();
printLine(limit1-1,32);
printchar(124);
printLine(limit2,32);
printchar(124);
printLine(limit1-1,32);
}
...
}