This website works better with JavaScript.
Home
Explore
Help
Sign In
titouan
/
solstice
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Initial commit
wip
Titouan Rigoudy
9 years ago
commit
e53ad78bfb
3 changed files
with
22 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
.gitignore
+4
-0
Cargo.toml
+3
-0
src/main.rs
+ 15
- 0
.gitignore
View File
@ -0,0 +1,15 @@
# Compiled files
*.o
*.so
*.rlib
*.dll
# Executables
*.exe
# Generated by Cargo
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
# Cargo.lock
+ 4
- 0
Cargo.toml
View File
@ -0,0 +1,4 @@
[
package
]
name
=
"solstice"
version
=
"0.1.0"
authors
=
[
"letitz"
]
+ 3
- 0
src/main.rs
View File
@ -0,0 +1,3 @@
fn
main
(
)
{
println
!
(
"Hello, world!"
)
;
}
Write
Preview
Loading…
Cancel
Save