This website works better with JavaScript.
Explore
Help
Sign In
elal
/
hsf
mirror of
https://github.com/E-Almqvist/hsf
Watch
1
Star
0
Fork
You've already forked hsf
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Old high school files. Lessson notes/codes/projects etc.
77
Commits
1
Branch
0
Tags
25 MiB
Tree:
a73b9dba55
hsf
/
prog2
/
exercism
/
rust
/
hello-world
/
tests
/
hello-world.rs
5 lines
89 B
Raw
Normal View
History
Unescape
Escape
Exercism
3 years ago
#[
test
]
fn
test_hello_world
(
)
{
assert_eq!
(
"Hello, World!"
,
hello_world
::
hello
(
)
)
;
}