# FELan A new programming language # How to use TO compile just run ```sh ./project compile ``` It would make an executable as `./build/felan` Or you can compile and run with ```sh ./project run ``` Just like compile, it would make an executable as `./build/felan` To run code just send your source file to the program like ```sh felan some_path.felan # or ./project run some_path.felan ``` # Examples To print `Hello` with no new line ```felan print("Hello") ``` To print `Hello` with a new line ```felan print("Hello\n") ```