Skip to content

Commit

Permalink
Changed The Official Name of the Programming Language from Blue Lagoo…
Browse files Browse the repository at this point in the history
…n to Tidal
  • Loading branch information
PranavVerma-droid committed Oct 4, 2024
1 parent 1c19892 commit 101f164
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "bl"
name = "td"
version = "1.4.0"
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A Language Made using Rust and LLVM. <br>
Made by Pranav Verma.

Uses the Extension `.bl`
Uses the Extension `.td`

## Download
The Latest Compiled Build Can Be Found in the [Releases](https://github.com/PranavVerma-droid/Blue-Lagoon/releases) (For Windows and Linux)
Expand All @@ -22,7 +22,7 @@ The Sample Code Along with the Basic Syntax Can be Found in the [Code](code) Dir
```cargo build --release``` <br>

### Run
```./bl <FILENAME.bl> -v```
```./td <FILENAME.bl> -v```



1 change: 0 additions & 1 deletion bl

This file was deleted.

File renamed without changes.
0 code/file-2.bl → code/file-2.td
100644 → 100755
File renamed without changes.
0 code/file-3.bl → code/file-3.td
100644 → 100755
File renamed without changes.
0 code/file-4.bl → code/file-4.td
100644 → 100755
File renamed without changes.
0 code/file-5.bl → code/file-5.td
100644 → 100755
File renamed without changes.
0 code/file-6.bl → code/file-6.td
100644 → 100755
File renamed without changes.
0 code/file-7.bl → code/file-7.td
100644 → 100755
File renamed without changes.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ fn main() {


let filename = &args[1];
if !filename.ends_with(".bl") {
eprintln!("Error: Input file must have a .bl extension");
if !filename.ends_with(".td") {
eprintln!("Error: Input file must have a .td extension");
std::process::exit(1);
}

Expand All @@ -46,10 +46,10 @@ fn main() {

fn help() {
println!("");
println!("Blue Lagoon Programming Language");
println!("Tidal Programming Language");
println!("Made by Pranav Verma - For the Lagoon Project.");
println!("");
println!("Usage: bl <file.bl> [--verbose | -v]");
println!("Usage: td <file.td> [--verbose | -v]");
println!("Options:");
println!(" --verbose, -v Enable verbose output");
println!(" help, --help, -h Display this help message");
Expand Down
1 change: 1 addition & 0 deletions td

0 comments on commit 101f164

Please sign in to comment.