luciangreen's picture
Upload 1424 files
557a17a verified

Data to Types Documentation

  • Data to Types is an algorithm that converts data into a type statement, for example:
?- data_to_types([[1],"a",1],[],T).
T = [[[t, brackets], [[t, number]]], [t, string], [t, number]].

?- data_to_types([1,["a"],1],[],T).
T = [[t, number], [[t, brackets], [[t, string]]], [t, number]].

?- data_to_types([1,"a",[1]],[],T).
T = [[t, number], [t, string], [[t, brackets], [[t, number]]]].

Getting Started

Please read the following instructions on how to install the project on your computer for converting data to types.

Prerequisites

None.

Installing

Authors

Lucian Green - Initial programmer - Lucian Academy

License

I licensed this project under the BSD3 License - see the LICENSE.md file for details