├── About_Guide_Product.js ├── Contact_Content_Resource.js ├── Event_Content.py ├── Feature_Offer_Search.js ├── Guide.py ├── README.md ├── Result_Support.py └── Search_Settings_Main.js /About_Guide_Product.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Contact_Content_Resource.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Event_Content.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Feature_Offer_Search.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Guide.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Machine-design-virtualization-project -------------------------------------------------------------------------------- /Result_Support.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Search_Settings_Main.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); --------------------------------------------------------------------------------