Update README.md

This commit is contained in:
J-K-Tech 2024-02-17 19:43:05 -03:00 committed by GitHub
commit c41a0e3758
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,12 +4,14 @@ A tiny command line interpreter for organizing, you can split huge single line c
## Features ## Features
Multi-command: You can make multiple commands in same `.tmk` file by having a line that starts with `\n` (all written in this line after the `\n.` will be ignored) Multi-command: You can make multiple commands in same `.tmk` file by having a line that starts with `\n`
Comments: You can use comments in the file to your peers or future you remember what you done, also useful to separate sections of a command Comments: You can use comments in the file to your peers or future you remember what you done, also useful to separate sections of a command
Variables: If a line starts with `%` it will get all the name of it until hit the second `%` and to set variables the line has to start with `set` Variables: If a line starts with `%` it will get all the name of it until hit the second `%` and to set variables the line has to start with `set`
(all written in this line after the `\n`,`set var=thing` and `%var%` will be ignored)
## example ## example
``` ```