gobyexample/public/функции-с-переменным-числом-аргументов-(variadic-functions)
2019-10-14 22:38:29 +03:00

42 lines
1.6 KiB
Plaintext
Generated
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Go в примерах: Функции с переменным числом аргументов (Variadic Functions)</title>
<link rel=stylesheet href="site.css">
</head>
<script>
onkeydown = (e) => {
if (e.key == "ArrowLeft") {
window.location.href = 'функции-с-множественным-возвратом-(multiple-return-values)';
}
if (e.key == "ArrowRight") {
window.location.href = 'замыкания-(closures)';
}
}
</script>
<body>
<div class="example" id="функции-с-переменным-числом-аргументов-(variadic-functions)">
<h2><a href="./">Go в примерах</a>: Функции с переменным числом аргументов (Variadic Functions)</h2>
<p class="next">
Следующий пример: <a href="замыкания-(closures)">Замыкания (Closures)</a>.
</p>
<p class="footer">
by <a href="https://markmcgranaghan.com">Mark McGranaghan</a> | <a href="https://github.com/mmcgrana/gobyexample/blob/master/examples/функции-с-переменным-числом-аргументов-(variadic-functions)">source</a> | <a href="https://github.com/mmcgrana/gobyexample#license">license</a>
</p>
</div>
<script>
var codeLines = [];
</script>
<script src="site.js" async></script>
</body>
</html>