-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13ef41f
commit 3921d6e
Showing
1 changed file
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
```scala | ||
```rust | ||
|
||
/** 三點幾喇,飲茶先啦 | ||
*/ | ||
object henryhchchc { | ||
|
||
val region = "Asia/Hong_Kong" | ||
val organization = "https://cse.hkust.edu.hk" | ||
|
||
val pgpPublicKeyId = "EE5A 5B68 FC97 0812".filterNot(_.isWhitespace) | ||
|
||
object languages { | ||
val naturalLanguages = Set("English", "Cantonese", "Mandarin") | ||
val programmingLanguages = Set("Kotlin", "Rust", "Lua", "Swift", "C") | ||
} | ||
/// 三點幾喇,飲茶先啦 | ||
fn profile() { | ||
let henryhchchc = User { | ||
region: Asia::Hong_Kong, | ||
organization: "https://cse.hkust.edu.hk", | ||
pgp_public_key_id: "EE5A 5B68 FC97 0812".split_whitespace().collect(), | ||
narual_languages: vec!["English", "Cantonese", "Mandarin"], | ||
programming_languages: vec!["Kotlin", "Rust", "Lua", "Swift", "C"] | ||
}; | ||
} | ||
``` |