.by file is written using python syntaxes, but with <, > and ;
check out abc.by for an example
To convert a program :
py by.py <filelocation>.by
To automatically execute after converting a program :
- Windows :
py by.py <fileloc>.by -e py
- Linux :
python3 by.py <fileloc>.by -e python3
known errors :
- Requires a semicolon after comments, and after each line in a multiline string
- Conditional </> operators require a \ before the operator, for ex :
if x < y
should be written asif x \< y