first commit

This commit is contained in:
Ben
2020-01-07 19:40:13 +00:00
commit eab1522b1a
4 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
**/*.rs.bk

6
Cargo.lock generated Normal file
View File

@@ -0,0 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "global_illumination_2d_render"
version = "0.1.0"

9
Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "global_illumination_2d_render"
version = "0.1.0"
authors = ["Ben <benjaminkyd@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

6
src/main.rs Normal file
View File

@@ -0,0 +1,6 @@
fn main()
{
println!("Hello, world!");
}