Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steveklabnik/hello
https://github.com/steveklabnik/hello
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/steveklabnik/hello
- Owner: steveklabnik
- Created: 2013-09-16T22:28:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-17T01:51:47.000Z (over 11 years ago)
- Last Synced: 2024-11-01T01:24:08.011Z (about 2 months ago)
- Language: Rust
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello
A 'hello world' package for Rust.
## Installation
You can install `hello` with `rustpkg`:
```
$ rustpkg install github.com/steveklabnik/hello
```## Usage
Here's a sample program using hello:
```
extern mod hello;fn main() {
hello::world();
}
```If you put that into a file called `hello.rs`, you can:
```
$ rustc hello.rs
$ ./hello
```## License
MIT licensed.