Skip to content

Commit fd8be44

Browse files
committed
Create new class music
1 parent b67ce85 commit fd8be44

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

music.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
############################################################################
2+
# CoderBot, a didactical programmable robot.
3+
# Copyright (C) 2014, 2015 Roberto Previtera <info@coderbot.org>
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation; either version 2 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License along
16+
# with this program; if not, write to the Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18+
############################################################################
19+
# CoderBot, a didactical programmable robot.
20+
# Copyright (C) 2014, 2015 Roberto Previtera <info@coderbot.org>
21+
#
22+
# MUSICAL EXTENTION for CoderBot
23+
# This extention is develop by:
24+
# Michele Carbonera - miki_992@hotmail.it - m.carbonera@campus.unimib.it - michele.carbonera@unimib.it
25+
# Antonino Tramontana - a.tramontana1@campus.unimib.it
26+
# Copyright (C) 2020
27+
############################################################################
28+
29+
import os
30+
31+
32+
class Musical:
33+
34+
def __init__(self):
35+
print("We have create a class: MUSICAL")

0 commit comments

Comments
 (0)