コードエディター見てみる
Rustの場合
fn main() { let number = 5; print!("{}", number); }
Pythonの場合
print('Hello World!')
def say_hello(recipient):
return 'Hello, {}!'.format(recipient)
say_hello('Tim')
fn main() { let number = 5; print!("{}", number); }
print('Hello World!')
def say_hello(recipient):
return 'Hello, {}!'.format(recipient)
say_hello('Tim')