Added License logo to README
This commit is contained in:
parent
a3a48cf9e1
commit
5e5fd8a92f
3 changed files with 1229 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
# Mention2Mail
|
# Mention2Mail
|
||||||
|
|
||||||
An IRC bot that sends an email to users when they are mentioned.
|
An IRC bot that sends an email to users when they are mentioned.
|
||||||
|
|
||||||
|
![Licensed under AGPLv3](lgpl-agpl-v3-logos.svg "Licensed under AGPLv3")
|
||||||
|
|
1221
lgpl-agpl-v3-logos.svg
Normal file
1221
lgpl-agpl-v3-logos.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 283 KiB |
|
@ -15,6 +15,10 @@
|
||||||
* along with Mention2Mail. If not, see <https://www.gnu.org/licenses/>.
|
* along with Mention2Mail. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use std::env::args;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
let flag = args().nth(1).expect("no flag");
|
||||||
|
let value = args().nth(2).expect("no value");
|
||||||
|
println!("Got flag {} with value {}", flag, value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue