This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ===================== | |
| States and Capitals | |
| ===================== | |
| Andhra Pradesh | |
| (Amaravati) | |
| Arunachal Pradesh | |
| (Itanagar) | |
| Assam | |
| (Dispur) | |
| Bihar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Chapter - 1 | |
| - Cargo https://www.rust-lang.org/tools/install | |
| - rustup target add wasm32-unknown-unknown | |
| - cargo install cosmwasm-check | |
| Chapter - 2 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "AN":"Andaman and Nicobar Islands", | |
| "AP":"Andhra Pradesh", | |
| "AR":"Arunachal Pradesh", | |
| "AS":"Assam", | |
| "BR":"Bihar", | |
| "CG":"Chandigarh", | |
| "CH":"Chhattisgarh", | |
| "DN":"Dadra and Nagar Haveli", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::collections::HashMap; | |
| use std::io::{self, Write}; | |
| fn main() { | |
| // Define a map for the cryptocurrency tickers | |
| let mut cryptos: HashMap<&str, &str> = HashMap::new(); | |
| cryptos.insert("BTC", "Bitcoin"); | |
| cryptos.insert("ETH", "Ethereum"); | |
| cryptos.insert("LTC", "Litecoin"); | |
| cryptos.insert("BCH", "Bitcoin Cash"); |
OlderNewer