Compare a list of strings: Difference between revisions

→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)"
m (→‎{{header|ALGOL 68}}: Use spaces instead of tabs)
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 3,154:
</pre>
 
=={{header|V (Vlang)}}==
{{trans|go}}
<syntaxhighlight lang="valngv (vlang)">fn all_equal(strings []string) bool {
for s in strings {
if s != strings[0] {
451

edits