Append element x to the list s.
s.add(x);
(conj s x)
#include <list>
s.push_back(x);
s.emplace_back(x);
using System.Collections.Generic;
s.Add(x);
s ~= x;
real, allocatable, dimension(:) :: s s = [s, x]
s = append(s, x)
xs = s ++ [x]
s.push(x);
s = [...s, x];
List; ArrayList;
List<String> stringList = new ArrayList<>(); stringList.add("hello")
table.insert(s, x)
s[#s + 1] = x
$s[]=$x;
classes
var L: TList; Item: Pointer; ... L.Add(Item); ...
push @s, $x;
s.append(x)
s << x
s.push(x)
s.Add(x)
No security, no password. Other people might choose the same nickname.