view src/ploki/examples/try.pk @ 12296:042127c1c142 draft

<fizzie> ` rm /hackenv/bin/bfi; ln -s /hackenv/lib/kps/bfi /hackenv/bin/bfi # no need for actual copies that you can forget to delete though
author HackEso <hackeso@esolangs.org>
date Sat, 04 Jan 2020 13:28:36 +0000
parents ac0403686959
children
line wrap: on
line source

#!../ploki
LET pat "foo{.*}bar"
LET i 0
FOR loop IF i < 2
	IF "afoo42bar" ?o~ pat
		"match \Vi -- \V\0
	ELSE
		"no match \Vi
	FI
	LET i += 1
	LET pat "{a}"
	NEXT loop
FI