Category:XBS: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
mNo edit summary
Line 34: Line 34:
[https://github.com/FIREYAUTO/XBS/wiki Github]<br>
[https://github.com/FIREYAUTO/XBS/wiki Github]<br>
[https://js.do/FIREYAUTO/xbscodeeditor XBS Code Editor]
[https://js.do/FIREYAUTO/xbscodeeditor XBS Code Editor]

== Notes ==

The XBS code editor uses a different version of XBS. To see more into details, the code editor explains it on the page.

Revision as of 15:18, 26 August 2021

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
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. 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

Github
XBS Code Editor

Notes

The XBS code editor uses a different version of XBS. To see more into details, the code editor explains it on the page.