implementing global variables (ch21)

This commit is contained in:
2024-08-26 22:54:25 +02:00
parent 062d2e44de
commit 5fb7d361cf
10 changed files with 219 additions and 20 deletions

View File

@ -0,0 +1,5 @@
var breakfast = "beignets";
var beverage = "cafe au lait";
breakfast = "beignets with " + beverage;
print breakfast;