Category:XBS: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
(Updated some information)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{stub}}{{language|XBS}}
{{language|XBS}}


== What is 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.
XBS is an interpreted language written in [[JavaScript]]. XBS has similarities to JavaScript and Python, as well as some other languages. XBS can be used for any web page with the correct library.


----
----
Line 9: Line 9:


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 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.


----
----
Line 32: Line 30:
== Links ==
== Links ==


[https://github.com/FIREYAUTO/XBS/wiki Github]<br>
[https://github.com/FIREYAUTO/XBS Github]<br>
[https://js.do/FIREYAUTO/xbscodeeditor XBS Code Editor]
[https://fireyauto.github.io/site/xbseditor2.html XBS Code Editor]

== Notes ==

XBS is currently going through a rewrite, and the wiki has not been rewritten yet.

Latest revision as of 16:15, 15 February 2022

Language
XBS
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using XBS.

What is XBS?

XBS is an interpreted language written in JavaScript. XBS has similarities to JavaScript and Python, as well as some other languages. XBS can be used for any web page with the correct library.


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.


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

Github
XBS Code Editor

Notes

XBS is currently going through a rewrite, and the wiki has not been rewritten yet.