A high level framework for building software on the Nintendo 64.
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: Initialize project

author
Isaac
date (Apr 17, 2023, 2:19 PM -0400) commit f4d04e33
+19
+1
.gitignore
··· 1 + /target
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "nintendo64" 7 + version = "0.1.0"
+8
Cargo.toml
··· 1 + [package] 2 + name = "nintendo64" 3 + version = "0.1.0" 4 + edition = "2021" 5 + 6 + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 + 8 + [dependencies]
+3
src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }