description |
---|
How to run example? |
Clone the repo
git clone https://github.com/LangTrans/LangTrans.git
or download source code in releases
Go to LangTrans Folder
Go to releases and download latest executable
Create a new file (filename.ext
)
# Anonymous function
inc = (x) => x+1
# Lambda function
twice(x) = 2*x
# Print Done if x is defined other wise Failed
print((x||True)?"Done":"Failed")
# Single Line if and check x defined or not
print('x is not defined') if !x
# Pipe Syntax
1 -> inc
|> print
# Reverse Pipe
print<-inc<-inc<-1
# Arithmetic operations with functions
print((inc+twice)(3))
#Scope syntax work like in javascript
#scope1#
print("Scope1")
print("Done")
#scope2#
print("Scope2")
print("Done")
Paste this code to filename.ext
py langtrans.py filename.ext filename.py example/source example/target
langtrans filename.ext filename.py example/source example/target
py langtrans.py -c example/source example/target py
py.ltz
will be created
py langtrans.py -f filename.ext filename.py py
filename.py
will be generated. It contain the transpiled code
Runfilename.py