Skip to content

DeeVi-conf/basc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BasC Scripting Language

BasC (pronounced the same as Bash) is a Scripting language that is compiled to Bash files and ran.

Primary Feature

  • Simplified syntax
  • Inspired by C syntax

I built it because I love scripting but hate bash syntax. The syntax is inspired by C family of languages and should be far more comfortable and intutive for any one who is used to lower level languages

Examples

basc sysntax:

var x = 10;
var y = 20;
var sum = x + y;
echo(sum);

Gets compiled to bash :

#!/usr/bin/env bash

x=10
y=20
sum=$((x + y))
echo "$sum"

The langauge is being developed, a full syntax doccumentation will be available with the first release.

About

BasC (pronounced the same as Bash) is a C-like Scripting language that is compiled to Bash files and ran.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages