Picat
Picat is an actively used programming language created in 2012.
8Years Old | ?Users | ?Jobs |
- the Picat website
- Picat first appeared in 2012
- Picat was created by Neng-Fa Zhou and Jonathan Fruhman
- See also: prolog
- Have a question about Picat not answered here? Email me and let me know how I can help.
Example code from the web:
import util. input_data(Tri) => Lines = read_file_lines("triangle.txt"), Tri = new_array(Lines.length), I = 1, foreach(Line in Lines) Tri[I] = Line.split().map(to_integer).to_array(), I := I+1 end.
Last updated August 9th, 2020