私はJRulesを使用してビジネスルールを作成しています。以下の非常に単純な例に示すように、ルールにコメントを追加したいと思います。ルールのドキュメントセクションがあることはわかっていますが、それは私が必要としているものではありません
// comments needed here
definitions
set 'an existing customer' to a customer
where the category of 'an existing customer' is "gold"
if
the city of 'an existing customer' is "London"
then
give a 5% discount to 'an existing customer'
else
// and more comments needed here
give a 10% discount to 'an existing customer'
明らかに、通常のc ++とc#のdouble forwardslash //を使用しても上記の例では機能しないため、私の質問は、BALのルールにコメントをどのように追加するかです。