Category:XBS: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{stub}}{{language|XBS}}")
 
(Updated some information)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{stub}}{{language|XBS}}
{{language|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 ==

[https://github.com/FIREYAUTO/XBS Github]<br>
[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.