Welcome to Flow! A programming language designed specifically for networking development. Need to test your server or create a quick demo? You've come to the right place.
- Download the MSI installer and follow the instructions
- Add
C:\Program Files\flowto thePATHenvironment variable
Place your desired library .jar files in here.
Required: flow-stdlib.jar is required for basic types and behaviors. You can find it here.
Here you can place all of your source files with your Flow code. Source files must have the .fl or the .flow extensions.
You can break files into packages by separating them into folders and adding the corresponding line at the top of the file:
package your.package
Required: One of the following functions must appear in one of the source files:
func main() {}
func main(Array<String> args) {}
In order to build and run your Flow project, run the following command in the command line:
flow run -c -p path/to/project/folder
- Check out the Flow Documentation: [Coming Soon]