1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Comments: switch from (( to /* delimiters

Double parentheses turned out to conflict too often with normal code. I guess sometimes I shouldn't try to make my own syntax up.
This commit is contained in:
Étienne Fildadut 2023-12-31 19:54:54 +01:00
parent 9e73269cda
commit 861877503a
3 changed files with 20 additions and 20 deletions

View file

@ -1,9 +1,9 @@
((hey couic + 5))
/*hey couic + 5*/
((nested ((comments)) d))
/*nested /*comments*/ d*/
2 ((end of line))
2 /*end of line*/
((start of line)) 3
/*start of line*/ 3
5 + ((middle)) 3
5 + /*middle*/ 3