Files
Brandon Soto 6eee990956 Add QML support (#142)
* Add QML support

* Add QML to README

* Add test for QML files
2017-09-18 18:52:00 +01:00

21 lines
303 B
QML

// 20 lines 11 code 5 comments 4 blanks
import QtQuick 2.7
import QtQuick.Controls 2.0
ApplicationWindow {
visible: true
/*
* Multiline comment
*/
Text {
text: "string type 1"
}
// comment
function testfunc() {
console.log('string type 2');
}
}