1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
tree-sitter-minizinc/corpus/source_file.txt

57 lines
577 B
Plaintext

==========
Empty File
==========
---
(source_file)
==================
End with semicolon
==================
a = b;
---
(source_file
(assignment_item (identifier) (identifier)))
=====================
End without semicolon
=====================
a = b
---
(source_file
(assignment_item (identifier) (identifier)))
==============
Block comments
==============
/*
* Block comments
*/
/* Comment with asterisks **/
----
(source_file
(block_comment)
(block_comment))
=============
Line comments
=============
% Comment
----
(source_file
(line_comment))