I want to store serialized code and in what programming language this code is written as RDF. For example something like that:
@prefix : <http://example.org/mynnamespace#>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
:algorithm dc:format "application/javascript";
:code """<script>alert('test');</script>""";
:language <URI?>.
What would you suggest how to identify the programming language? Do you know any existing vocabulary? If not, what URI would you use for e.g. JavaScript, C#, Python...?
Thanks.