all repos — min @ 7b5a7e98670d260e6411bd50b6661128fe57d36a

A small but practical concatenative programming language.

Fixes
h3rald h3rald@h3rald.com
Sat, 02 Jan 2021 10:33:27 +0100
commit

7b5a7e98670d260e6411bd50b6661128fe57d36a

parent

9581eaf9020384bbf700e1acafb835fe4d980fac

2 files changed, 4 insertions(+), 2 deletions(-)

jump to
M min.vimmin.vim

@@ -1,8 +1,8 @@

" Vim syntax file " Language: min " Maintainer: Fabio Cevasco -" Last Change: 31 Dec 2020 -" Version: 0.27.0 +" Last Change: 02 Jan 2021 +" Version: 0.27.1 if exists("b:current_syntax") finish
M tests/str.mintests/str.min

@@ -38,6 +38,8 @@

("This is a difficult test" "s/difficult/simple/" =~ ("This is a simple test") ==) assert ("This is a DIFFICULT\n test" "s/difficult/simple/mis" =~ ("This is a simple\n test") ==) assert + + ("/api/items/test-1" "/\\/api\\/items\\/(.+)/" regex 1 get "test-1" ==) assert ("this is a test" uppercase "THIS IS A TEST" ==) assert