Skip to content

prisems/NBAS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NBAS V 7.8.11

EarthRulerr - NBAS stars - NBAS forks - NBAS
GitHub tag License issues - NBAS
C++20 HTML5

A console based programming language meant to be like Shell or Bash with a basic appearance. See the full documentation.

Hello World in NBAS:

PRNT Hello, World! ;

This code would output the string "Hello, World!" to the console.

To run this program using the interpreter, you would need to enter the above code into the interpreter and then press enter to execute it. The interpreter would then read the command and output the string "Hello, World!" to the console.

Installation

git clone https://github.com/EarthRulerr/NBAS
or you can access a web compiler here: NBAS Compiler

Examples

  1. Hello, World!
    Code: PRNT Hello, World! ;
    Output: Hello, World!
  2. Using PRNT and Information.
    Code: PRNT I have the ; %20 $CPU %20 PRNT CPU and it has ; %20 $CPUM %20 PRNT memory and it runs at a speed of ; %20 $CPU_SPD PRNT . ;
    Output: I have the (CPU NAME) CPU and it has (CPU MEMORY) memory and it runs at a speed of (CPU(S) SPEED).