I hereby claim:
- I am parabellum1905y on github.
- I am luger_08 (https://keybase.io/luger_08) on keybase.
- I have a public key ASAAbz9dyziZ8ZkP86L4zB_QHSUdVPFJUqskVOMZHNl2NQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import java.util.Arrays; | |
import java.util.Optional; | |
class Stack<T>{ | |
private int capacity = 32; | |
private Object[] container = new Object[capacity]; | |
private int size = 0; |
-module(first). | |
-export([mult/2, triangleArea/3, square/1, treble/1]). | |
mult(X, Y)-> | |
X*Y. | |
%%mult(2, 3). | |
%%P = 10,12. |
extern crate telegram_bot; | |
use telegram_bot::*; | |
fn main() { | |
// Create bot, test simple API call and print bot information | |
let api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap(); | |
println!("getMe: {:?}", api.get_me()); | |
let mut listener = api.listener(ListeningMethod::LongPoll(None)); |
Newer guides than mine (mine is a bit dated and has a lot of rough edges):
Have you looked at these?