Category:XBS: Difference between revisions

no edit summary
(Created page with "{{stub}}{{language|XBS}}")
 
No edit summary
Line 1:
{{stub}}{{language|XBS}}
 
== What is XBS? ==
XBS is an interpreted language written in [[JavaScript]]. The main purpose of XBS is to provide an easy way to interact with the web.
 
----
 
== Details ==
 
XBS has a github page and is currently open-sourced. The github page has a wiki for the documentation; but just know, this language still isn't done. It has most features a programming language has, except for some minor details that I need to fix.
 
XBS is still under active development, and gets updates/bug fixes almost everyday.
 
----
 
== Code Examples ==
 
Variable declaration
 
<lang xbs>set x = "Hello, world!";
log(x)</lang>
 
Functions
 
<lang xbs>func FirstFunction(a,b){
send a+b; #Add a and b
}
log(FirstFunction(1,2));</lang>
 
----
 
== Links ==
 
[https://github.com/FIREYAUTO/XBS/wiki Github]<br>
[https://js.do/FIREYAUTO/xbscodeeditor XBS Code Editor]
Anonymous user