Added License logo to README

This commit is contained in:
Thelie 2021-04-23 17:14:44 +02:00
parent a3a48cf9e1
commit 5e5fd8a92f
3 changed files with 1229 additions and 2 deletions

View file

@ -1,3 +1,5 @@
# 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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 283 KiB

View file

@ -15,6 +15,10 @@
* along with Mention2Mail. If not, see <https://www.gnu.org/licenses/>.
*/
use std::env::args;
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);
}