[05:53:45] *** Quits: scrmpy (~scrmpy@n175-34-200-35.sun1.vic.optusnet.com.au) (Ping timeout: 240 seconds) [06:37:39] *** Joins: proteus-guy (~proteus-l@cm-58-10-208-180.revip7.asianet.co.th) [17:08:11] *** Quits: proteusguy (~proteusgu@cm-58-10-208-180.revip7.asianet.co.th) (Ping timeout: 240 seconds) [17:08:25] *** Quits: proteus-guy (~proteus-l@cm-58-10-208-180.revip7.asianet.co.th) (Ping timeout: 240 seconds) [17:12:24] *** Joins: proteus-guy (~proteus-l@cm-58-10-208-180.revip7.asianet.co.th) [17:22:03] *** Joins: proteusguy (~proteusgu@cm-58-10-208-180.revip7.asianet.co.th) [20:36:02] *** Joins: scrmpy (~scrmpy@n122-110-174-43.sun2.vic.optusnet.com.au) [20:41:58] Hi, I'm new to GF and just now getting started with RGL but I'm stuck on how to get things like mkText or mkCl to work. When I try compile I just get "no overload instance of mkText" error, which I assume is because I'm missing some include but I don't know what (I'm currently opening SyntaxRus and ParadigmsRus). [20:58:48] scrmpy: could you share your code? that would help a lot to understand what you are trying to do [21:03:16] https://paste.ofcode.org/mQAH3hJNK4Q7zk7C4ZqMRN [21:03:41] I'm not even sure if it's really correct (was just trying to convert a simple grammar I did manually to using RGL) [21:09:26] I think the main problem is that you have Sentence = Str but use mkText in Pred, which gives you a Text [21:09:43] What happens if you change it to Sentence = Text? [21:10:11] compiles :) [21:10:44] now you can use e.g. gr -cat=Sentence to test it [21:11:12] what does the -cat=Sentence flag do? [21:12:11] oh I see so you can generate just a specific cat [21:12:52] and yes, looks like it's all working. thanks for that [21:13:07] and you don't have a category S which GF would use by default [21:15:01] oh, well seems to not matter (if I specify Sentence or not) [21:22:01] also in the RGL docs, some the examples reference sleep_V/run_V/walk_V, are those just examples or are there actually some predefined verbs we can use? [21:30:07] there is a basic lexicon included in the rgl [21:30:44] https://github.com/GrammaticalFramework/gf-rgl/blob/master/src/abstract/Lexicon.gf [21:31:28] thanks