5 lines
76 B
Bash
5 lines
76 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
age=20
|
||
|
name=flykhan
|
||
|
echo "my name is $name, and my age is $age"
|