commit 83f1f4a51c07944a87c3346dd1b433e7d4a82a00 Author: dozens Date: Wed Oct 21 13:15:21 2020 -0600 first commit! diff --git a/README.md b/README.md new file mode 100644 index 0000000..de94315 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Oulipo + +> An English to oulipo dictionary + +This JSON file can be used to return oulipo suggestions for common +English words. + +## Example + +This www page consumes the JSON and builds an HTML dictionary list: + +## Contributing + +Pull requests welcome! + +## Resources + +More about oulipo: + +Join the #oulipo channel on tilde.town diff --git a/oulipo.json b/oulipo.json new file mode 100644 index 0000000..3361600 --- /dev/null +++ b/oulipo.json @@ -0,0 +1,19 @@ +{ + "hello": [ + "hi", + "salutations" + ], + "here": [ + "in this location" + ], + "me": [ + "this human", + "my avatar" + ], + "same": [ + "similar" + ], + "different": [ + "not similar" + ] +}