Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
18
Task/String-comparison/AutoHotkey/string-comparison-1.ahk
Normal file
18
Task/String-comparison/AutoHotkey/string-comparison-1.ahk
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
exact_equality(a,b){
|
||||
return (a==b)
|
||||
}
|
||||
exact_inequality(a,b){
|
||||
return !(a==b)
|
||||
}
|
||||
equality(a,b){
|
||||
return (a=b)
|
||||
}
|
||||
inequality(a,b){
|
||||
return !(a=b)
|
||||
}
|
||||
ordered_before(a,b){
|
||||
return ("" a < "" b)
|
||||
}
|
||||
ordered_after(a,b){
|
||||
return ("" a > "" b)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue