Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeedev committed Apr 15, 2024
1 parent 87cf285 commit 957c49d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "rain-lang"
name = "rain"
description = "Rain programming language compiler source code"
edition = "2021"
authors = ["[email protected] <Nikita Goncarenko/nikeedev>"]
version = "0.1.0-alpha"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions rain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### https://github.com/nikeedev/storm
#### How the storm project and droplet manager would look like
# https://github.com/nikeedev/storm
# How the storm project and droplet manager would look like


[project]
Expand Down
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#![allow(dead_code)]
#![allow(unused)]

mod rain;
use std::{
collections::HashMap, env, fs, hash::Hash, process
collections::HashMap, env, fs, process
};
use colored::*;
use toml;
use serde::Deserialize;

use rain::lexer::*;
Expand Down

0 comments on commit 957c49d

Please sign in to comment.