Files
moxa/_test/comp0.go
Marc Vertes 5c79a97543 feat: add support for comparison of multiple types (#42)
The code for comparison operators is now generated by genop.
The support for multiple type has been added.
Missing operators <= and >= are now implemented.
2019-01-24 19:13:30 +01:00

9 lines
68 B
Go

package main
func main() {
println(2 < 2.4)
}
// Output:
// true