mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
6eee990956
* Add QML support * Add QML to README * Add test for QML files
21 lines
303 B
QML
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');
|
|
}
|
|
}
|