-
-
Notifications
You must be signed in to change notification settings - Fork 542
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -422,6 +422,7 @@ Haskell | |
Haxe | ||
Hcl | ||
Hex | ||
hledger | ||
Hlsl | ||
HolyC | ||
Html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 18 lines 6 code 10 comments 2 blanks | ||
# a comment | ||
; another comment | ||
|
||
; ^ a blank line | ||
comment | ||
account assets ; Declare valid account names and display order. | ||
a block comment | ||
end comment | ||
|
||
account assets:savings ; A subaccount. This one represents a bank account. | ||
account assets:checking ; Another. Note, 2+ spaces after the account name. | ||
account assets:receivable ; Accounting type is inferred from english names, | ||
account passifs ; or declared with a "type" tag, type:L | ||
account expenses ; type:X | ||
; A follow-on comment line, indented. | ||
account expenses:rent ; Expense and revenue categories are also accounts. | ||
; Subaccounts inherit their parent's type. |