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 chumsky::prelude::*; | |
| use crate::expr::*; | |
| pub type Span = SimpleSpan<usize>; | |
| pub type Spanned<T> = (T, Span); | |
| #[derive(Debug, Clone, PartialEq)] | |
| pub enum Token<'src> { | |
| Num(f64), | |
| // Str(&'src str), |
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
| 0 | |
| SECTION | |
| 2 | |
| HEADER | |
| 9 | |
| $ACADVER | |
| 1 | |
| AC1009 | |
| 9 | |
| $FILLMODE |
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
| { | |
| "name": "KPRepublic BM40 RGB", | |
| "vendorProductId": 1263547440, | |
| "macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
| "layers": [ | |
| [ | |
| "KC_TAB", | |
| "KC_Q", | |
| "KC_D", | |
| "KC_R", |
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
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| #include <iterator> | |
| using namespace std; | |
| // Make a 727.txt files contain "727" (without double quotes) | |
| int main() { |