mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
12 lines
170 B
Text
12 lines
170 B
Text
@define FOO foo
|
|
@define BAR bar
|
|
@define BAZ baz
|
|
@if FOO == "foo"
|
|
true
|
|
@endif
|
|
@if FOO == "foo" && BAR == "bar"
|
|
true
|
|
@endif
|
|
@if !(FOO == "bar" || BAR != "bar")
|
|
true
|
|
@endif
|