改行あり出力
Python
py
print("...")
Swift
swift
print("..")
PHP
php
echo "...\n"
TypeScript
ts
console.log('...');
並べて良いのかわからないが・・
Bash
bash
echo "..."
Ruby
rb
puts ".."
PowerShell
powershell
Write-Output ".."
エイリアス
powershell
echo ".."
こちらは標準エラー?
powershell
Write-Host ".."
C++
cpp
cout << "..." << endl;
c
printf("...\n");
Java
java
System.out.println("..");