PHP, 20 bytes
Surprisingly short this time:
<?=array_sum($argv);
Runs from command line, like:
$ php sum.php 1 2
insertusernamehere
- 4.8k
- 3
- 18
- 45
Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack ExchangeSurprisingly short this time:
<?=array_sum($argv);
Runs from command line, like:
$ php sum.php 1 2