mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 10:35:58 +01:00
27 lines
604 B
Text
27 lines
604 B
Text
|
|
||
|
# Test comment
|
||
|
|
||
|
testInt = 123
|
||
|
testFloat = 123.456
|
||
|
testString = Hello World! ## This is not a comment! # This is!
|
||
|
|
||
|
testCategory {
|
||
|
testValueInt = 123456
|
||
|
testValueHex = 0xFFFFaabb
|
||
|
|
||
|
nested1 {
|
||
|
testValueNest = 1
|
||
|
nested2 {
|
||
|
testValueNest = 1
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
testStringQuotes = "Hello World!"
|
||
|
#testDefault = 123
|
||
|
|
||
|
#doABarrelRoll = woohoo, some, params # Funny!
|
||
|
#doSomethingFunny = 1, 2, 3, 4 # Funnier!
|
||
|
#testSpaces = abc , def # many spaces, should be trimmed
|
||
|
|