ninjaturtle@lemmy.todaytoSelfhosted@lemmy.world•Moving away from Nextcloud AIO, where do I start setting up a Nextcloud instance WITHOUT Docker?English
3·
7 months agoVideo on setting up next cloud on Ubuntu server 22.04
Learn Linux TV next cloud set up Ubuntu 22.04
Some steps can be skipped if self-hosting as this tutorial is more for using a hosting platform. Instruction may change when 24.04 is release.
No,
nam
is a placeholder for whatever is inputed into the function input by the user when the program is ran. Input prints to screen whatever you put () when you first call it. It expects something to then be inputted by the user when the program runs by prompting the user with the message in the (). Whatever the user inputs is then referred to by the variable, in this case “Chuck” was inputted.It will make a bit more sense when you start writing functions, you can return whatever results you want from calling a function. Those returns will be referred to by the variable you label it, word on the left of the =.
In short, whatever is returned by a function is what is “saved” in the variable.