mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
546 B
34 lines
546 B
package main
|
|
|
|
func someString() string {
|
|
return "foo"
|
|
}
|
|
|
|
func zeroLengthString() string {
|
|
return ""
|
|
}
|
|
|
|
func stringLen(s string) int {
|
|
return len(s)
|
|
}
|
|
|
|
func stringIndex(s string, index int) byte {
|
|
return s[index]
|
|
}
|
|
|
|
func stringCompareEqual(s1, s2 string) bool {
|
|
return s1 == s2
|
|
}
|
|
|
|
func stringCompareUnequal(s1, s2 string) bool {
|
|
return s1 != s2
|
|
}
|
|
|
|
func stringCompareLarger(s1, s2 string) bool {
|
|
return s1 > s2
|
|
}
|
|
|
|
func stringLookup(s string, x uint8) byte {
|
|
// Test that x is correctly extended to an uint before comparison.
|
|
return s[x]
|
|
}
|
|
|