From 579eb2ccbd6f174b42748565bbf6c2f2e3c8e827 Mon Sep 17 00:00:00 2001 From: Mads Hougesen Date: Thu, 7 Mar 2024 19:05:14 +0100 Subject: [PATCH] Delete test/input.md --- test/input.md | 103 -------------------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 test/input.md diff --git a/test/input.md b/test/input.md deleted file mode 100644 index 8b418f0..0000000 --- a/test/input.md +++ /dev/null @@ -1,103 +0,0 @@ -# example - -```rust - - -pub async - fn add( - a: - i32, - - b: i32) - - -> i32 { - a + - - b - } -``` - -```lua - - local function add ( a , b -) - -return a +b - - -end - - -``` - -```python - -def add ( - a : int , b:int )->int : - return a +b - - - - - -``` - -```nim - - -proc add( a :int , b:int ) : int = - return a + b - -``` - -```zig -fn add (a : i32 , b : i32 ) i32 { - return a + b ; - - } - - -``` - -```javascript -function add( - a, - b) - { - return a - + - b; -} -``` - - - -```typescript -function add( - a:number, - b :number) - :number{ - return a - + - b; -} -``` - - -```json - - // This is a comment -{ - "add": { "a":1, - "b": ["1",23,null]} - } -``` - -```toml - - -name = "mdsf" - author = "Mads Hougesen" - - -```