| Username | Character name | Race and Class | Notes | 
|---|---|---|---|
| Luringen | Igor Deathforge | Human Paladin | Prays to Helm, frontline DPS | 
| Haxton Fale | Niri Rockstaff | Half-Elf Cleric | Prays to Eldaf, healer | 
| Tweetiti | Zarzatran Naandaelle | Tiefling Sorcerer | Ranged support | 
| EuropaPlanitia | Euell | High-Elf Wizard | Ranged support | 
| Username | Character name | Race and Class | Notes | 
|---|---|---|---|
| Luringen | Igor Deathforge | Human Paladin | Prays to Helm, frontline DPS | 
| Haxton Fale | Niri Rockstaff | Half-Elf Cleric | Prays to Eldaf, healer | 
| Tweetiti | Zarzatran Naandaelle | Draconic Bloodline Sorcerer | Ranged support | 
| Red Angel | Gwen Everred | Tiefling Druid | Beast trainer/Beast | 
  
    
      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
    
  
  
    
  | fn main() { | |
| for arg in std::env::args().skip(1) { | |
| println!("{}", unescape(arg.as_ref())); | |
| } | |
| } | |
| /// Takes a string and replaces escape sequences with the characters they represent. | |
| fn unescape(data: &str) -> String { | |
| let mut result = String::with_capacity(data.len()); | |
| let mut iterator = data.chars(); |