; ===============[ SKILL METRICS ]===============
; Address Hex Data ASCII
00000000 43 2B 2B 20 20 20 20 20 | C | 85% (0x55)
00000000 43 2B 2B 20 20 20 20 20 | C++ | 85% (0x55)
00000010 52 75 73 74 20 20 20 20 | Rust | 65% (0x41)
00000020 5A 69 67 20 20 20 20 20 | Zig | 60% (0x28)
00000030 4C 69 6E 75 78 20 20 20 | Linux | 90% (0x5A)
;
; LEGEND:
; 0x55 = 85% | 0x5A = 90% | 0x3C = 60%
; 0x50 = 80% | 0x28 = 40% | 0x41 = 65%
fn main() {
let hello = [72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33]
.iter()
.map(|&c| c as u8 as char)
.collect::<String>();
println!("{}", hello);
}
#include <iostream>
int main() {
char encoded[] = {89, 126, 125, 125, 126, 27, 15, 104, 126, 109, 125, 115, 18};
for (char c : encoded) {
std::cout << static_cast<char>(c ^ 0x1F);
}
std::cout << std::endl;
return 0;
}