mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
1e78cc7a30
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2364 ebee16cc-31ac-478f-84a7-5cbb03baadba
17 lines
388 B
Python
17 lines
388 B
Python
#
|
|
# PyMite - A flyweight Python interpreter for 8-bit and larger microcontrollers.
|
|
# Copyright 2002 Dean Hall. All rights reserved.
|
|
# PyMite is offered through one of two licenses: commercial or open-source.
|
|
# See the LICENSE file at the root of this package for licensing details.
|
|
#
|
|
|
|
#
|
|
# Runs the interactive interpreter
|
|
#
|
|
|
|
print "Hello"
|
|
|
|
import ipm
|
|
ipm.ipm(globals())
|
|
|
|
print "Good-bye" |